diff --git a/docs/Api/AddOnsApi.md b/docs/Api/AddOnsApi.md new file mode 100644 index 00000000..c46cf692 --- /dev/null +++ b/docs/Api/AddOnsApi.md @@ -0,0 +1,119 @@ +# [Upsun\Api\AddOnsApi](../src/Api/AddOnsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getOrgAddons()**](AddOnsApi.md#getOrgAddons) | **GET** /organizations/{organization_id}/addons | Get add-ons | https://docs.upsun.com/api/#tag/Add-ons/operation/get-org-addons | +| [**updateOrgAddons()**](AddOnsApi.md#updateOrgAddons) | **PATCH** /organizations/{organization_id}/addons | Update organization add-ons | https://docs.upsun.com/api/#tag/Add-ons/operation/update-org-addons | + + +## `getOrgAddons()` + +```php +getOrgAddons($organizationId): \Upsun\Model\OrganizationAddonsObject +``` + +Get add-ons + +Retrieves information about the add-ons for an organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgAddons($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AddOnsApi->getOrgAddons: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\OrganizationAddonsObject**](../Model/OrganizationAddonsObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgAddons()` + +```php +updateOrgAddons($organizationId, $updateOrgAddonsRequest): \Upsun\Model\OrganizationAddonsObject +``` + +Update organization add-ons + +Updates the add-ons configuration for an organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$updateOrgAddonsRequest = new \Upsun\Model\UpdateOrgAddonsRequest(); // \Upsun\Model\UpdateOrgAddonsRequest + +try { + $result = $apiInstance->updateOrgAddons($organizationId, $updateOrgAddonsRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AddOnsApi->updateOrgAddons: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **updateOrgAddonsRequest** | [**\Upsun\Model\UpdateOrgAddonsRequest**](../Model/UpdateOrgAddonsRequest.md)| | | + +### Return type + +[**\Upsun\Model\OrganizationAddonsObject**](../Model/OrganizationAddonsObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/AlertsApi.md b/docs/Api/AlertsApi.md new file mode 100644 index 00000000..ebc13bae --- /dev/null +++ b/docs/Api/AlertsApi.md @@ -0,0 +1,115 @@ +# [Upsun\Api\AlertsApi](../src/Api/AlertsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getUsageAlerts()**](AlertsApi.md#getUsageAlerts) | **GET** /alerts/subscriptions/{subscriptionId}/usage | Get usage alerts for a subscription | https://docs.upsun.com/api/#tag/Alerts/operation/get-usage-alerts | +| [**updateUsageAlerts()**](AlertsApi.md#updateUsageAlerts) | **PATCH** /alerts/subscriptions/{subscriptionId}/usage | Update usage alerts. | https://docs.upsun.com/api/#tag/Alerts/operation/update-usage-alerts | + + +## `getUsageAlerts()` + +```php +getUsageAlerts($subscriptionId): \Upsun\Model\GetUsageAlerts200Response +``` + +Get usage alerts for a subscription + +### Example + +```php +getUsageAlerts($subscriptionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AlertsApi->getUsageAlerts: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **subscriptionId** | **string**| The ID of the subscription | | + +### Return type + +[**\Upsun\Model\GetUsageAlerts200Response**](../Model/GetUsageAlerts200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateUsageAlerts()` + +```php +updateUsageAlerts($subscriptionId, $updateUsageAlertsRequest): \Upsun\Model\GetUsageAlerts200Response +``` + +Update usage alerts. + +### Example + +```php +updateUsageAlerts($subscriptionId, $updateUsageAlertsRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AlertsApi->updateUsageAlerts: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **subscriptionId** | **string**| The ID of the subscription | | +| **updateUsageAlertsRequest** | [**\Upsun\Model\UpdateUsageAlertsRequest**](../Model/UpdateUsageAlertsRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\GetUsageAlerts200Response**](../Model/GetUsageAlerts200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ApiTokensApi.md b/docs/Api/ApiTokensApi.md new file mode 100644 index 00000000..3f2ea261 --- /dev/null +++ b/docs/Api/ApiTokensApi.md @@ -0,0 +1,232 @@ +# [Upsun\Api\ApiTokensApi](../src/Api/ApiTokensApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createApiToken()**](ApiTokensApi.md#createApiToken) | **POST** /users/{user_id}/api-tokens | Create an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/create-api-token | +| [**deleteApiToken()**](ApiTokensApi.md#deleteApiToken) | **DELETE** /users/{user_id}/api-tokens/{token_id} | Delete an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/delete-api-token | +| [**getApiToken()**](ApiTokensApi.md#getApiToken) | **GET** /users/{user_id}/api-tokens/{token_id} | Get an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/get-api-token | +| [**listApiTokens()**](ApiTokensApi.md#listApiTokens) | **GET** /users/{user_id}/api-tokens | List a user's API tokens | https://docs.upsun.com/api/#tag/Api-Tokens/operation/list-api-tokens | + + +## `createApiToken()` + +```php +createApiToken($userId, $createApiTokenRequest): \Upsun\Model\ApiToken +``` + +Create an API token + +Creates an API token + +### Example + +```php +createApiToken($userId, $createApiTokenRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ApiTokensApi->createApiToken: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **createApiTokenRequest** | [**\Upsun\Model\CreateApiTokenRequest**](../Model/CreateApiTokenRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\ApiToken**](../Model/ApiToken.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteApiToken()` + +```php +deleteApiToken($userId, $tokenId) +``` + +Delete an API token + +Deletes an API token + +### Example + +```php +deleteApiToken($userId, $tokenId); +} catch (Exception $e) { + echo 'Exception when calling ApiTokensApi->deleteApiToken: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **tokenId** | **string**| The ID of the token. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getApiToken()` + +```php +getApiToken($userId, $tokenId): \Upsun\Model\ApiToken +``` + +Get an API token + +Retrieves the specified API token. + +### Example + +```php +getApiToken($userId, $tokenId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ApiTokensApi->getApiToken: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **tokenId** | **string**| The ID of the token. | | + +### Return type + +[**\Upsun\Model\ApiToken**](../Model/ApiToken.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listApiTokens()` + +```php +listApiTokens($userId): \Upsun\Model\ApiToken[] +``` + +List a user's API tokens + +Retrieves a list of API tokens associated with a single user. + +### Example + +```php +listApiTokens($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ApiTokensApi->listApiTokens: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\ApiToken[]**](../Model/ApiToken.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/AutoscalingApi.md b/docs/Api/AutoscalingApi.md new file mode 100644 index 00000000..57f4550a --- /dev/null +++ b/docs/Api/AutoscalingApi.md @@ -0,0 +1,182 @@ +# [Upsun\Api\AutoscalingApi](../src/Api/AutoscalingApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getAutoscalerSettings()**](AutoscalingApi.md#getAutoscalerSettings) | **GET** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/get-autoscaler-settings | +| [**patchAutoscalerSettings()**](AutoscalingApi.md#patchAutoscalerSettings) | **PATCH** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/patch-autoscaler-settings | +| [**postAutoscalerSettings()**](AutoscalingApi.md#postAutoscalerSettings) | **POST** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/post-autoscaler-settings | + + +## `getAutoscalerSettings()` + +```php +getAutoscalerSettings($projectId, $environmentId): \Upsun\Model\AutoscalerSettings +``` + + + +Retrieves Autoscaler settings + +### Example + +```php +getAutoscalerSettings($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AutoscalingApi->getAutoscalerSettings: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| A string that uniquely identifies the project | | +| **environmentId** | **string**| A string that uniquely identifies the project environment | | + +### Return type + +[**\Upsun\Model\AutoscalerSettings**](../Model/AutoscalerSettings.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `patchAutoscalerSettings()` + +```php +patchAutoscalerSettings($projectId, $environmentId, $autoscalerSettings): \Upsun\Model\AutoscalerSettings +``` + + + +Modifies Autoscaler settings + +### Example + +```php +patchAutoscalerSettings($projectId, $environmentId, $autoscalerSettings); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AutoscalingApi->patchAutoscalerSettings: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| A string that uniquely identifies the project | | +| **environmentId** | **string**| A string that uniquely identifies the project environment | | +| **autoscalerSettings** | [**\Upsun\Model\AutoscalerSettings**](../Model/AutoscalerSettings.md)| Settings to modify | [optional] | + +### Return type + +[**\Upsun\Model\AutoscalerSettings**](../Model/AutoscalerSettings.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `postAutoscalerSettings()` + +```php +postAutoscalerSettings($projectId, $environmentId, $autoscalerSettings): \Upsun\Model\AutoscalerSettings +``` + + + +Updates Autoscaler settings + +### Example + +```php +postAutoscalerSettings($projectId, $environmentId, $autoscalerSettings); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AutoscalingApi->postAutoscalerSettings: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| A string that uniquely identifies the project | | +| **environmentId** | **string**| A string that uniquely identifies the project environment | | +| **autoscalerSettings** | [**\Upsun\Model\AutoscalerSettings**](../Model/AutoscalerSettings.md)| Settings to update | [optional] | + +### Return type + +[**\Upsun\Model\AutoscalerSettings**](../Model/AutoscalerSettings.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/CertManagementApi.md b/docs/Api/CertManagementApi.md new file mode 100644 index 00000000..86a36b25 --- /dev/null +++ b/docs/Api/CertManagementApi.md @@ -0,0 +1,292 @@ +# [Upsun\Api\CertManagementApi](../src/Api/CertManagementApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsCertificates()**](CertManagementApi.md#createProjectsCertificates) | **POST** /projects/{projectId}/certificates | Add an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/create-projects-certificates | +| [**deleteProjectsCertificates()**](CertManagementApi.md#deleteProjectsCertificates) | **DELETE** /projects/{projectId}/certificates/{certificateId} | Delete an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/delete-projects-certificates | +| [**getProjectsCertificates()**](CertManagementApi.md#getProjectsCertificates) | **GET** /projects/{projectId}/certificates/{certificateId} | Get an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/get-projects-certificates | +| [**listProjectsCertificates()**](CertManagementApi.md#listProjectsCertificates) | **GET** /projects/{projectId}/certificates | Get list of SSL certificates | https://docs.upsun.com/api/#tag/Cert-Management/operation/list-projects-certificates | +| [**updateProjectsCertificates()**](CertManagementApi.md#updateProjectsCertificates) | **PATCH** /projects/{projectId}/certificates/{certificateId} | Update an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/update-projects-certificates | + + +## `createProjectsCertificates()` + +```php +createProjectsCertificates($projectId, $certificateCreateInput): \Upsun\Model\AcceptedResponse +``` + +Add an SSL certificate + +Add a single SSL certificate to a project. + +### Example + +```php +createProjectsCertificates($projectId, $certificateCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertManagementApi->createProjectsCertificates: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateCreateInput** | [**\Upsun\Model\CertificateCreateInput**](../Model/CertificateCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsCertificates()` + +```php +deleteProjectsCertificates($projectId, $certificateId): \Upsun\Model\AcceptedResponse +``` + +Delete an SSL certificate + +Delete a single SSL certificate associated with a project. + +### Example + +```php +deleteProjectsCertificates($projectId, $certificateId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertManagementApi->deleteProjectsCertificates: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsCertificates()` + +```php +getProjectsCertificates($projectId, $certificateId): \Upsun\Model\Certificate +``` + +Get an SSL certificate + +Retrieve information about a single SSL certificate associated with a project. + +### Example + +```php +getProjectsCertificates($projectId, $certificateId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertManagementApi->getProjectsCertificates: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateId** | **string**| | | + +### Return type + +[**\Upsun\Model\Certificate**](../Model/Certificate.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsCertificates()` + +```php +listProjectsCertificates($projectId): \Upsun\Model\Certificate[] +``` + +Get list of SSL certificates + +Retrieve a list of objects representing the SSL certificates associated with a project. + +### Example + +```php +listProjectsCertificates($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertManagementApi->listProjectsCertificates: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Certificate[]**](../Model/Certificate.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsCertificates()` + +```php +updateProjectsCertificates($projectId, $certificateId, $certificatePatch): \Upsun\Model\AcceptedResponse +``` + +Update an SSL certificate + +Update a single SSL certificate associated with a project. + +### Example + +```php +updateProjectsCertificates($projectId, $certificateId, $certificatePatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertManagementApi->updateProjectsCertificates: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateId** | **string**| | | +| **certificatePatch** | [**\Upsun\Model\CertificatePatch**](../Model/CertificatePatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/CertificateProvisionerApi.md b/docs/Api/CertificateProvisionerApi.md new file mode 100644 index 00000000..3ca3fb31 --- /dev/null +++ b/docs/Api/CertificateProvisionerApi.md @@ -0,0 +1,172 @@ +# [Upsun\Api\CertificateProvisionerApi](../src/Api/CertificateProvisionerApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectsProvisioners()**](CertificateProvisionerApi.md#getProjectsProvisioners) | **GET** /projects/{projectId}/provisioners/{certificateProvisionerDocumentId} | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/get-projects-provisioners | +| [**listProjectsProvisioners()**](CertificateProvisionerApi.md#listProjectsProvisioners) | **GET** /projects/{projectId}/provisioners | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/list-projects-provisioners | +| [**updateProjectsProvisioners()**](CertificateProvisionerApi.md#updateProjectsProvisioners) | **PATCH** /projects/{projectId}/provisioners/{certificateProvisionerDocumentId} | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/update-projects-provisioners | + + +## `getProjectsProvisioners()` + +```php +getProjectsProvisioners($projectId, $certificateProvisionerDocumentId): \Upsun\Model\CertificateProvisioner +``` + + + +### Example + +```php +getProjectsProvisioners($projectId, $certificateProvisionerDocumentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertificateProvisionerApi->getProjectsProvisioners: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateProvisionerDocumentId** | **string**| | | + +### Return type + +[**\Upsun\Model\CertificateProvisioner**](../Model/CertificateProvisioner.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsProvisioners()` + +```php +listProjectsProvisioners($projectId): \Upsun\Model\CertificateProvisioner[] +``` + + + +### Example + +```php +listProjectsProvisioners($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertificateProvisionerApi->listProjectsProvisioners: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\CertificateProvisioner[]**](../Model/CertificateProvisioner.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsProvisioners()` + +```php +updateProjectsProvisioners($projectId, $certificateProvisionerDocumentId, $certificateProvisionerPatch): \Upsun\Model\AcceptedResponse +``` + + + +### Example + +```php +updateProjectsProvisioners($projectId, $certificateProvisionerDocumentId, $certificateProvisionerPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling CertificateProvisionerApi->updateProjectsProvisioners: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **certificateProvisionerDocumentId** | **string**| | | +| **certificateProvisionerPatch** | [**\Upsun\Model\CertificateProvisionerPatch**](../Model/CertificateProvisionerPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ConnectionsApi.md b/docs/Api/ConnectionsApi.md new file mode 100644 index 00000000..d2de707d --- /dev/null +++ b/docs/Api/ConnectionsApi.md @@ -0,0 +1,175 @@ +# [Upsun\Api\ConnectionsApi](../src/Api/ConnectionsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**deleteLoginConnection()**](ConnectionsApi.md#deleteLoginConnection) | **DELETE** /users/{user_id}/connections/{provider} | Delete a federated login connection | https://docs.upsun.com/api/#tag/Connections/operation/delete-login-connection | +| [**getLoginConnection()**](ConnectionsApi.md#getLoginConnection) | **GET** /users/{user_id}/connections/{provider} | Get a federated login connection | https://docs.upsun.com/api/#tag/Connections/operation/get-login-connection | +| [**listLoginConnections()**](ConnectionsApi.md#listLoginConnections) | **GET** /users/{user_id}/connections | List federated login connections | https://docs.upsun.com/api/#tag/Connections/operation/list-login-connections | + + +## `deleteLoginConnection()` + +```php +deleteLoginConnection($provider, $userId) +``` + +Delete a federated login connection + +Deletes the specified connection. + +### Example + +```php +deleteLoginConnection($provider, $userId); +} catch (Exception $e) { + echo 'Exception when calling ConnectionsApi->deleteLoginConnection: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **provider** | **string**| The name of the federation provider. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getLoginConnection()` + +```php +getLoginConnection($provider, $userId): \Upsun\Model\Connection +``` + +Get a federated login connection + +Retrieves the specified connection. + +### Example + +```php +getLoginConnection($provider, $userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ConnectionsApi->getLoginConnection: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **provider** | **string**| The name of the federation provider. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\Connection**](../Model/Connection.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listLoginConnections()` + +```php +listLoginConnections($userId): \Upsun\Model\Connection[] +``` + +List federated login connections + +Retrieves a list of connections associated with a single user. + +### Example + +```php +listLoginConnections($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ConnectionsApi->listLoginConnections: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\Connection[]**](../Model/Connection.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/DefaultApi.md b/docs/Api/DefaultApi.md new file mode 100644 index 00000000..7c8fdeca --- /dev/null +++ b/docs/Api/DefaultApi.md @@ -0,0 +1,145 @@ +# [Upsun\Api\DefaultApi](../src/Api/DefaultApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**listTickets()**](DefaultApi.md#listTickets) | **GET** /tickets | List support tickets | https://docs.upsun.com/api/#tag//operation/list-tickets | +| [**queryOrganiationCarbon()**](DefaultApi.md#queryOrganiationCarbon) | **GET** /organizations/{organization_id}/metrics/carbon | Query project carbon emissions metrics for an entire organization | https://docs.upsun.com/api/#tag//operation/query-organiation-carbon | + + +## `listTickets()` + +```php +listTickets($filterTicketId, $filterCreated, $filterUpdated, $filterType, $filterPriority, $filterStatus, $filterRequesterId, $filterSubmitterId, $filterAssigneeId, $filterHasIncidents, $filterDue, $search, $page): \Upsun\Model\ListTickets200Response +``` + +List support tickets + +### Example + +```php +listTickets($filterTicketId, $filterCreated, $filterUpdated, $filterType, $filterPriority, $filterStatus, $filterRequesterId, $filterSubmitterId, $filterAssigneeId, $filterHasIncidents, $filterDue, $search, $page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DefaultApi->listTickets: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **filterTicketId** | **int**| The ID of the ticket. | [optional] | +| **filterCreated** | **\DateTime**| ISO dateformat expected. The time when the support ticket was created. | [optional] | +| **filterUpdated** | **\DateTime**| ISO dateformat expected. The time when the support ticket was updated. | [optional] | +| **filterType** | **string**| The type of the support ticket. | [optional] | +| **filterPriority** | **string**| The priority of the support ticket. | [optional] | +| **filterStatus** | **string**| The status of the support ticket. | [optional] | +| **filterRequesterId** | **string**| UUID of the ticket requester. Converted from the ZID value. | [optional] | +| **filterSubmitterId** | **string**| UUID of the ticket submitter. Converted from the ZID value. | [optional] | +| **filterAssigneeId** | **string**| UUID of the ticket assignee. Converted from the ZID value. | [optional] | +| **filterHasIncidents** | **bool**| Whether or not this ticket has incidents. | [optional] | +| **filterDue** | **\DateTime**| ISO dateformat expected. A time that the ticket is due at. | [optional] | +| **search** | **string**| Search string for the ticket subject and description. | [optional] | +| **page** | **int**| Page to be displayed. Defaults to 1. | [optional] | + +### Return type + +[**\Upsun\Model\ListTickets200Response**](../Model/ListTickets200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `queryOrganiationCarbon()` + +```php +queryOrganiationCarbon($organizationId, $from, $to, $interval): \Upsun\Model\OrganizationCarbon +``` + +Query project carbon emissions metrics for an entire organization + +Queries the carbon emission data for all projects owned by the specified organiation. + +### Example + +```php +queryOrganiationCarbon($organizationId, $from, $to, $interval); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DefaultApi->queryOrganiationCarbon: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **from** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| The start of the time frame for the query. Inclusive. | [optional] | +| **to** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| The end of the time frame for the query. Exclusive. | [optional] | +| **interval** | **string**| The interval by which the query groups the results. of the time frame for the query. Exclusive. | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationCarbon**](../Model/OrganizationCarbon.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/DeploymentApi.md b/docs/Api/DeploymentApi.md new file mode 100644 index 00000000..b2dd51e5 --- /dev/null +++ b/docs/Api/DeploymentApi.md @@ -0,0 +1,182 @@ +# [Upsun\Api\DeploymentApi](../src/Api/DeploymentApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectsEnvironmentsDeployments()**](DeploymentApi.md#getProjectsEnvironmentsDeployments) | **GET** /projects/{projectId}/environments/{environmentId}/deployments/{deploymentId} | Get a single environment deployment | https://docs.upsun.com/api/#tag/Deployment/operation/get-projects-environments-deployments | +| [**listProjectsEnvironmentsDeployments()**](DeploymentApi.md#listProjectsEnvironmentsDeployments) | **GET** /projects/{projectId}/environments/{environmentId}/deployments | Get an environment's deployment information | https://docs.upsun.com/api/#tag/Deployment/operation/list-projects-environments-deployments | +| [**updateProjectsEnvironmentsDeploymentsNext()**](DeploymentApi.md#updateProjectsEnvironmentsDeploymentsNext) | **PATCH** /projects/{projectId}/environments/{environmentId}/deployments/next | Update the next deployment | https://docs.upsun.com/api/#tag/Deployment/operation/update-projects-environments-deployments-next | + + +## `getProjectsEnvironmentsDeployments()` + +```php +getProjectsEnvironmentsDeployments($projectId, $environmentId, $deploymentId): \Upsun\Model\Deployment +``` + +Get a single environment deployment + +Retrieve a single deployment configuration with an id of `current`. This may be subject to change in the future. Only `current` can be queried. + +### Example + +```php +getProjectsEnvironmentsDeployments($projectId, $environmentId, $deploymentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentApi->getProjectsEnvironmentsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **deploymentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Deployment**](../Model/Deployment.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsDeployments()` + +```php +listProjectsEnvironmentsDeployments($projectId, $environmentId): \Upsun\Model\Deployment[] +``` + +Get an environment's deployment information + +Retrieve the read-only configuration of an environment's deployment. The returned information is everything required to recreate a project's current deployment. More specifically, the objects returned by this endpoint contain the configuration derived from the repository's YAML configuration file: `.upsun/config.yaml`. Additionally, any values deriving from environment variables, the domains attached to a project, project access settings, etc. are included here. This endpoint currently returns a list containing a single deployment configuration with an `id` of `current`. This may be subject to change in the future. + +### Example + +```php +listProjectsEnvironmentsDeployments($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentApi->listProjectsEnvironmentsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Deployment[]**](../Model/Deployment.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsEnvironmentsDeploymentsNext()` + +```php +updateProjectsEnvironmentsDeploymentsNext($projectId, $environmentId, $updateProjectsEnvironmentsDeploymentsNextRequest): \Upsun\Model\AcceptedResponse +``` + +Update the next deployment + +Update resources for either webapps, services, or workers in the next deployment. + +### Example + +```php +updateProjectsEnvironmentsDeploymentsNext($projectId, $environmentId, $updateProjectsEnvironmentsDeploymentsNextRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentApi->updateProjectsEnvironmentsDeploymentsNext: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **updateProjectsEnvironmentsDeploymentsNextRequest** | [**\Upsun\Model\UpdateProjectsEnvironmentsDeploymentsNextRequest**](../Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/DeploymentTargetApi.md b/docs/Api/DeploymentTargetApi.md new file mode 100644 index 00000000..c8d3b9dd --- /dev/null +++ b/docs/Api/DeploymentTargetApi.md @@ -0,0 +1,290 @@ +# [Upsun\Api\DeploymentTargetApi](../src/Api/DeploymentTargetApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsDeployments()**](DeploymentTargetApi.md#createProjectsDeployments) | **POST** /projects/{projectId}/deployments | Create a project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/create-projects-deployments | +| [**deleteProjectsDeployments()**](DeploymentTargetApi.md#deleteProjectsDeployments) | **DELETE** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Delete a single project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/delete-projects-deployments | +| [**getProjectsDeployments()**](DeploymentTargetApi.md#getProjectsDeployments) | **GET** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Get a single project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/get-projects-deployments | +| [**listProjectsDeployments()**](DeploymentTargetApi.md#listProjectsDeployments) | **GET** /projects/{projectId}/deployments | Get project deployment target info | https://docs.upsun.com/api/#tag/Deployment-Target/operation/list-projects-deployments | +| [**updateProjectsDeployments()**](DeploymentTargetApi.md#updateProjectsDeployments) | **PATCH** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Update a project deployment | https://docs.upsun.com/api/#tag/Deployment-Target/operation/update-projects-deployments | + + +## `createProjectsDeployments()` + +```php +createProjectsDeployments($projectId, $deploymentTargetCreateInput): \Upsun\Model\AcceptedResponse +``` + +Create a project deployment target + +Set the deployment target information for a project. + +### Example + +```php +createProjectsDeployments($projectId, $deploymentTargetCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentTargetApi->createProjectsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **deploymentTargetCreateInput** | [**\Upsun\Model\DeploymentTargetCreateInput**](../Model/DeploymentTargetCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsDeployments()` + +```php +deleteProjectsDeployments($projectId, $deploymentTargetConfigurationId): \Upsun\Model\AcceptedResponse +``` + +Delete a single project deployment target + +Delete a single deployment target configuration associated with a specific project. + +### Example + +```php +deleteProjectsDeployments($projectId, $deploymentTargetConfigurationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentTargetApi->deleteProjectsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **deploymentTargetConfigurationId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsDeployments()` + +```php +getProjectsDeployments($projectId, $deploymentTargetConfigurationId): \Upsun\Model\DeploymentTarget +``` + +Get a single project deployment target + +Get a single deployment target configuration of a project. + +### Example + +```php +getProjectsDeployments($projectId, $deploymentTargetConfigurationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentTargetApi->getProjectsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **deploymentTargetConfigurationId** | **string**| | | + +### Return type + +[**\Upsun\Model\DeploymentTarget**](../Model/DeploymentTarget.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsDeployments()` + +```php +listProjectsDeployments($projectId): \Upsun\Model\DeploymentTarget[] +``` + +Get project deployment target info + +The deployment target information for the project. + +### Example + +```php +listProjectsDeployments($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentTargetApi->listProjectsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\DeploymentTarget[]**](../Model/DeploymentTarget.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsDeployments()` + +```php +updateProjectsDeployments($projectId, $deploymentTargetConfigurationId, $deploymentTargetPatch): \Upsun\Model\AcceptedResponse +``` + +Update a project deployment + +### Example + +```php +updateProjectsDeployments($projectId, $deploymentTargetConfigurationId, $deploymentTargetPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DeploymentTargetApi->updateProjectsDeployments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **deploymentTargetConfigurationId** | **string**| | | +| **deploymentTargetPatch** | [**\Upsun\Model\DeploymentTargetPatch**](../Model/DeploymentTargetPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/DiscountsApi.md b/docs/Api/DiscountsApi.md new file mode 100644 index 00000000..319bcddd --- /dev/null +++ b/docs/Api/DiscountsApi.md @@ -0,0 +1,165 @@ +# [Upsun\Api\DiscountsApi](../src/Api/DiscountsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getDiscount()**](DiscountsApi.md#getDiscount) | **GET** /discounts/{id} | Get an organization discount | https://docs.upsun.com/api/#tag/Discounts/operation/get-discount | +| [**getTypeAllowance()**](DiscountsApi.md#getTypeAllowance) | **GET** /discounts/types/allowance | Get the value of the First Project Incentive discount | https://docs.upsun.com/api/#tag/Discounts/operation/get-type-allowance | +| [**listOrgDiscounts()**](DiscountsApi.md#listOrgDiscounts) | **GET** /organizations/{organization_id}/discounts | List organization discounts | https://docs.upsun.com/api/#tag/Discounts/operation/list-org-discounts | + + +## `getDiscount()` + +```php +getDiscount($id): \Upsun\Model\Discount +``` + +Get an organization discount + +### Example + +```php +getDiscount($id); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DiscountsApi->getDiscount: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **id** | **string**| The ID of the organization discount | | + +### Return type + +[**\Upsun\Model\Discount**](../Model/Discount.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getTypeAllowance()` + +```php +getTypeAllowance(): \Upsun\Model\GetTypeAllowance200Response +``` + +Get the value of the First Project Incentive discount + +### Example + +```php +getTypeAllowance(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DiscountsApi->getTypeAllowance: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\GetTypeAllowance200Response**](../Model/GetTypeAllowance200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgDiscounts()` + +```php +listOrgDiscounts($organizationId): \Upsun\Model\ListOrgDiscounts200Response +``` + +List organization discounts + +Retrieves all applicable discounts granted to the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->listOrgDiscounts($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DiscountsApi->listOrgDiscounts: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\ListOrgDiscounts200Response**](../Model/ListOrgDiscounts200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/DomainManagementApi.md b/docs/Api/DomainManagementApi.md new file mode 100644 index 00000000..fe5416b3 --- /dev/null +++ b/docs/Api/DomainManagementApi.md @@ -0,0 +1,587 @@ +# [Upsun\Api\DomainManagementApi](../src/Api/DomainManagementApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsDomains()**](DomainManagementApi.md#createProjectsDomains) | **POST** /projects/{projectId}/domains | Add a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/create-projects-domains | +| [**createProjectsEnvironmentsDomains()**](DomainManagementApi.md#createProjectsEnvironmentsDomains) | **POST** /projects/{projectId}/environments/{environmentId}/domains | Add an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/create-projects-environments-domains | +| [**deleteProjectsDomains()**](DomainManagementApi.md#deleteProjectsDomains) | **DELETE** /projects/{projectId}/domains/{domainId} | Delete a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/delete-projects-domains | +| [**deleteProjectsEnvironmentsDomains()**](DomainManagementApi.md#deleteProjectsEnvironmentsDomains) | **DELETE** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Delete an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/delete-projects-environments-domains | +| [**getProjectsDomains()**](DomainManagementApi.md#getProjectsDomains) | **GET** /projects/{projectId}/domains/{domainId} | Get a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/get-projects-domains | +| [**getProjectsEnvironmentsDomains()**](DomainManagementApi.md#getProjectsEnvironmentsDomains) | **GET** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Get an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/get-projects-environments-domains | +| [**listProjectsDomains()**](DomainManagementApi.md#listProjectsDomains) | **GET** /projects/{projectId}/domains | Get list of project domains | https://docs.upsun.com/api/#tag/Domain-Management/operation/list-projects-domains | +| [**listProjectsEnvironmentsDomains()**](DomainManagementApi.md#listProjectsEnvironmentsDomains) | **GET** /projects/{projectId}/environments/{environmentId}/domains | Get a list of environment domains | https://docs.upsun.com/api/#tag/Domain-Management/operation/list-projects-environments-domains | +| [**updateProjectsDomains()**](DomainManagementApi.md#updateProjectsDomains) | **PATCH** /projects/{projectId}/domains/{domainId} | Update a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/update-projects-domains | +| [**updateProjectsEnvironmentsDomains()**](DomainManagementApi.md#updateProjectsEnvironmentsDomains) | **PATCH** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Update an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/update-projects-environments-domains | + + +## `createProjectsDomains()` + +```php +createProjectsDomains($projectId, $domainCreateInput): \Upsun\Model\AcceptedResponse +``` + +Add a project domain + +Add a single domain to a project. If the `ssl` field is left blank without an object containing a PEM-encoded SSL certificate, a certificate will [be provisioned for you via Let's Encrypt.](https://docs.upsun.com/anchors/routes/https/certificates/) + +### Example + +```php +createProjectsDomains($projectId, $domainCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->createProjectsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **domainCreateInput** | [**\Upsun\Model\DomainCreateInput**](../Model/DomainCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createProjectsEnvironmentsDomains()` + +```php +createProjectsEnvironmentsDomains($projectId, $environmentId, $domainCreateInput): \Upsun\Model\AcceptedResponse +``` + +Add an environment domain + +Add a single domain to an environment. If the environment is not production, the `replacement_for` field is required, which binds a new domain to an existing one from a production environment. If the `ssl` field is left blank without an object containing a PEM-encoded SSL certificate, a certificate will [be provisioned for you via Let's Encrypt](https://docs.upsun.com/anchors/routes/https/certificates/). + +### Example + +```php +createProjectsEnvironmentsDomains($projectId, $environmentId, $domainCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->createProjectsEnvironmentsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **domainCreateInput** | [**\Upsun\Model\DomainCreateInput**](../Model/DomainCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsDomains()` + +```php +deleteProjectsDomains($projectId, $domainId): \Upsun\Model\AcceptedResponse +``` + +Delete a project domain + +Delete a single user-specified domain associated with a project. + +### Example + +```php +deleteProjectsDomains($projectId, $domainId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->deleteProjectsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **domainId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsEnvironmentsDomains()` + +```php +deleteProjectsEnvironmentsDomains($projectId, $environmentId, $domainId): \Upsun\Model\AcceptedResponse +``` + +Delete an environment domain + +Delete a single user-specified domain associated with an environment. + +### Example + +```php +deleteProjectsEnvironmentsDomains($projectId, $environmentId, $domainId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->deleteProjectsEnvironmentsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **domainId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsDomains()` + +```php +getProjectsDomains($projectId, $domainId): \Upsun\Model\Domain +``` + +Get a project domain + +Retrieve information about a single user-specified domain associated with a project. + +### Example + +```php +getProjectsDomains($projectId, $domainId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->getProjectsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **domainId** | **string**| | | + +### Return type + +[**\Upsun\Model\Domain**](../Model/Domain.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsEnvironmentsDomains()` + +```php +getProjectsEnvironmentsDomains($projectId, $environmentId, $domainId): \Upsun\Model\Domain +``` + +Get an environment domain + +Retrieve information about a single user-specified domain associated with an environment. + +### Example + +```php +getProjectsEnvironmentsDomains($projectId, $environmentId, $domainId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->getProjectsEnvironmentsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **domainId** | **string**| | | + +### Return type + +[**\Upsun\Model\Domain**](../Model/Domain.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsDomains()` + +```php +listProjectsDomains($projectId): \Upsun\Model\Domain[] +``` + +Get list of project domains + +Retrieve a list of objects representing the user-specified domains associated with a project. Note that this does *not* return the domains automatically assigned to a project that appear under \"Access site\" on the user interface. + +### Example + +```php +listProjectsDomains($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->listProjectsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Domain[]**](../Model/Domain.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsDomains()` + +```php +listProjectsEnvironmentsDomains($projectId, $environmentId): \Upsun\Model\Domain[] +``` + +Get a list of environment domains + +Retrieve a list of objects representing the user-specified domains associated with an environment. Note that this does *not* return the `.platformsh.site` subdomains, which are automatically assigned to the environment. + +### Example + +```php +listProjectsEnvironmentsDomains($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->listProjectsEnvironmentsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Domain[]**](../Model/Domain.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsDomains()` + +```php +updateProjectsDomains($projectId, $domainId, $domainPatch): \Upsun\Model\AcceptedResponse +``` + +Update a project domain + +Update the information associated with a single user-specified domain associated with a project. + +### Example + +```php +updateProjectsDomains($projectId, $domainId, $domainPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->updateProjectsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **domainId** | **string**| | | +| **domainPatch** | [**\Upsun\Model\DomainPatch**](../Model/DomainPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsEnvironmentsDomains()` + +```php +updateProjectsEnvironmentsDomains($projectId, $environmentId, $domainId, $domainPatch): \Upsun\Model\AcceptedResponse +``` + +Update an environment domain + +Update the information associated with a single user-specified domain associated with an environment. + +### Example + +```php +updateProjectsEnvironmentsDomains($projectId, $environmentId, $domainId, $domainPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling DomainManagementApi->updateProjectsEnvironmentsDomains: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **domainId** | **string**| | | +| **domainPatch** | [**\Upsun\Model\DomainPatch**](../Model/DomainPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/EnvironmentActivityApi.md b/docs/Api/EnvironmentActivityApi.md new file mode 100644 index 00000000..244436aa --- /dev/null +++ b/docs/Api/EnvironmentActivityApi.md @@ -0,0 +1,182 @@ +# [Upsun\Api\EnvironmentActivityApi](../src/Api/EnvironmentActivityApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**actionProjectsEnvironmentsActivitiesCancel()**](EnvironmentActivityApi.md#actionProjectsEnvironmentsActivitiesCancel) | **POST** /projects/{projectId}/environments/{environmentId}/activities/{activityId}/cancel | Cancel an environment activity | https://docs.upsun.com/api/#tag/Environment-Activity/operation/action-projects-environments-activities-cancel | +| [**getProjectsEnvironmentsActivities()**](EnvironmentActivityApi.md#getProjectsEnvironmentsActivities) | **GET** /projects/{projectId}/environments/{environmentId}/activities/{activityId} | Get an environment activity log entry | https://docs.upsun.com/api/#tag/Environment-Activity/operation/get-projects-environments-activities | +| [**listProjectsEnvironmentsActivities()**](EnvironmentActivityApi.md#listProjectsEnvironmentsActivities) | **GET** /projects/{projectId}/environments/{environmentId}/activities | Get environment activity log | https://docs.upsun.com/api/#tag/Environment-Activity/operation/list-projects-environments-activities | + + +## `actionProjectsEnvironmentsActivitiesCancel()` + +```php +actionProjectsEnvironmentsActivitiesCancel($projectId, $environmentId, $activityId): \Upsun\Model\AcceptedResponse +``` + +Cancel an environment activity + +Cancel a single activity as specified by an `id` returned by the [Get environment activities list](#tag/Environment-Activity%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1activities%2Fget) endpoint. Please note that not all activities are cancelable. + +### Example + +```php +actionProjectsEnvironmentsActivitiesCancel($projectId, $environmentId, $activityId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentActivityApi->actionProjectsEnvironmentsActivitiesCancel: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **activityId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsEnvironmentsActivities()` + +```php +getProjectsEnvironmentsActivities($projectId, $environmentId, $activityId): \Upsun\Model\Activity +``` + +Get an environment activity log entry + +Retrieve a single environment activity entry as specified by an `id` returned by the [Get environment activities list](#tag/Environment-Activity%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1activities%2Fget) endpoint. See the documentation on that endpoint for details about the information this endpoint can return. + +### Example + +```php +getProjectsEnvironmentsActivities($projectId, $environmentId, $activityId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentActivityApi->getProjectsEnvironmentsActivities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **activityId** | **string**| | | + +### Return type + +[**\Upsun\Model\Activity**](../Model/Activity.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsActivities()` + +```php +listProjectsEnvironmentsActivities($projectId, $environmentId): \Upsun\Model\Activity[] +``` + +Get environment activity log + +Retrieve an environment's activity log. This returns a list of object with records of actions such as: - Commits being pushed to the repository - A new environment being branched out from the specified environment - A snapshot being created of the specified environment The object includes a timestamp of when the action occurred (`created_at`), when the action concluded (`updated_at`), the current `state` of the action, the action's completion percentage (`completion_percent`), and other related information in the `payload`. The contents of the `payload` varies based on the `type` of the activity. For example: - An `environment.branch` action's `payload` can contain objects representing the `parent` environment and the branching action's `outcome`. - An `environment.push` action's `payload` can contain objects representing the `environment`, the specific `commits` included in the push, and the `user` who pushed. + +### Example + +```php +listProjectsEnvironmentsActivities($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentActivityApi->listProjectsEnvironmentsActivities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Activity[]**](../Model/Activity.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/EnvironmentApi.md b/docs/Api/EnvironmentApi.md new file mode 100644 index 00000000..3be74488 --- /dev/null +++ b/docs/Api/EnvironmentApi.md @@ -0,0 +1,1112 @@ +# [Upsun\Api\EnvironmentApi](../src/Api/EnvironmentApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**activateEnvironment()**](EnvironmentApi.md#activateEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/activate | Activate an environment | https://docs.upsun.com/api/#tag/Environment/operation/activate-environment | +| [**branchEnvironment()**](EnvironmentApi.md#branchEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/branch | Branch an environment | https://docs.upsun.com/api/#tag/Environment/operation/branch-environment | +| [**createProjectsEnvironmentsVersions()**](EnvironmentApi.md#createProjectsEnvironmentsVersions) | **POST** /projects/{projectId}/environments/{environmentId}/versions | Create versions associated with the environment | https://docs.upsun.com/api/#tag/Environment/operation/create-projects-environments-versions | +| [**deactivateEnvironment()**](EnvironmentApi.md#deactivateEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/deactivate | Deactivate an environment | https://docs.upsun.com/api/#tag/Environment/operation/deactivate-environment | +| [**deleteEnvironment()**](EnvironmentApi.md#deleteEnvironment) | **DELETE** /projects/{projectId}/environments/{environmentId} | Delete an environment | https://docs.upsun.com/api/#tag/Environment/operation/delete-environment | +| [**deleteProjectsEnvironmentsVersions()**](EnvironmentApi.md#deleteProjectsEnvironmentsVersions) | **DELETE** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | Delete the version | https://docs.upsun.com/api/#tag/Environment/operation/delete-projects-environments-versions | +| [**deployEnvironment()**](EnvironmentApi.md#deployEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/deploy | Deploy an environment | https://docs.upsun.com/api/#tag/Environment/operation/deploy-environment | +| [**getEnvironment()**](EnvironmentApi.md#getEnvironment) | **GET** /projects/{projectId}/environments/{environmentId} | Get an environment | https://docs.upsun.com/api/#tag/Environment/operation/get-environment | +| [**getProjectsEnvironmentsVersions()**](EnvironmentApi.md#getProjectsEnvironmentsVersions) | **GET** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | List the version | https://docs.upsun.com/api/#tag/Environment/operation/get-projects-environments-versions | +| [**initializeEnvironment()**](EnvironmentApi.md#initializeEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/initialize | Initialize a new environment | https://docs.upsun.com/api/#tag/Environment/operation/initialize-environment | +| [**listProjectsEnvironments()**](EnvironmentApi.md#listProjectsEnvironments) | **GET** /projects/{projectId}/environments | Get list of project environments | https://docs.upsun.com/api/#tag/Environment/operation/list-projects-environments | +| [**listProjectsEnvironmentsVersions()**](EnvironmentApi.md#listProjectsEnvironmentsVersions) | **GET** /projects/{projectId}/environments/{environmentId}/versions | List versions associated with the environment | https://docs.upsun.com/api/#tag/Environment/operation/list-projects-environments-versions | +| [**mergeEnvironment()**](EnvironmentApi.md#mergeEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/merge | Merge an environment | https://docs.upsun.com/api/#tag/Environment/operation/merge-environment | +| [**pauseEnvironment()**](EnvironmentApi.md#pauseEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/pause | Pause an environment | https://docs.upsun.com/api/#tag/Environment/operation/pause-environment | +| [**redeployEnvironment()**](EnvironmentApi.md#redeployEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/redeploy | Redeploy an environment | https://docs.upsun.com/api/#tag/Environment/operation/redeploy-environment | +| [**resumeEnvironment()**](EnvironmentApi.md#resumeEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/resume | Resume a paused environment | https://docs.upsun.com/api/#tag/Environment/operation/resume-environment | +| [**synchronizeEnvironment()**](EnvironmentApi.md#synchronizeEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/synchronize | Synchronize a child environment with its parent | https://docs.upsun.com/api/#tag/Environment/operation/synchronize-environment | +| [**updateEnvironment()**](EnvironmentApi.md#updateEnvironment) | **PATCH** /projects/{projectId}/environments/{environmentId} | Update an environment | https://docs.upsun.com/api/#tag/Environment/operation/update-environment | +| [**updateProjectsEnvironmentsVersions()**](EnvironmentApi.md#updateProjectsEnvironmentsVersions) | **PATCH** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | Update the version | https://docs.upsun.com/api/#tag/Environment/operation/update-projects-environments-versions | + + +## `activateEnvironment()` + +```php +activateEnvironment($projectId, $environmentId, $environmentActivateInput): \Upsun\Model\AcceptedResponse +``` + +Activate an environment + +Set the specified environment's status to active + +### Example + +```php +activateEnvironment($projectId, $environmentId, $environmentActivateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->activateEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentActivateInput** | [**\Upsun\Model\EnvironmentActivateInput**](../Model/EnvironmentActivateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `branchEnvironment()` + +```php +branchEnvironment($projectId, $environmentId, $environmentBranchInput): \Upsun\Model\AcceptedResponse +``` + +Branch an environment + +Create a new environment as a branch of the current environment. + +### Example + +```php +branchEnvironment($projectId, $environmentId, $environmentBranchInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->branchEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentBranchInput** | [**\Upsun\Model\EnvironmentBranchInput**](../Model/EnvironmentBranchInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createProjectsEnvironmentsVersions()` + +```php +createProjectsEnvironmentsVersions($projectId, $environmentId, $versionCreateInput): \Upsun\Model\AcceptedResponse +``` + +Create versions associated with the environment + +Create versions associated with the `{environmentId}` environment. At least one version always exists. When multiple versions exist, it means that multiple versions of an app are deployed. The deployment target type denotes whether staged deployment is supported. + +### Example + +```php +createProjectsEnvironmentsVersions($projectId, $environmentId, $versionCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->createProjectsEnvironmentsVersions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **versionCreateInput** | [**\Upsun\Model\VersionCreateInput**](../Model/VersionCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deactivateEnvironment()` + +```php +deactivateEnvironment($projectId, $environmentId): \Upsun\Model\AcceptedResponse +``` + +Deactivate an environment + +Destroy all services and data running on this environment so that only the Git branch remains. The environment can be reactivated later at any time; reactivating an environment will sync data from the parent environment and redeploy. **NOTE: ALL DATA IN THIS ENVIRONMENT WILL BE IRREVOCABLY LOST** + +### Example + +```php +deactivateEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->deactivateEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteEnvironment()` + +```php +deleteEnvironment($projectId, $environmentId): \Upsun\Model\AcceptedResponse +``` + +Delete an environment + +Delete a specified environment. + +### Example + +```php +deleteEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->deleteEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsEnvironmentsVersions()` + +```php +deleteProjectsEnvironmentsVersions($projectId, $environmentId, $versionId): \Upsun\Model\AcceptedResponse +``` + +Delete the version + +Delete the `{versionId}` version. A routing percentage for this version may be specified for staged rollouts (if the deployment target supports it). + +### Example + +```php +deleteProjectsEnvironmentsVersions($projectId, $environmentId, $versionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->deleteProjectsEnvironmentsVersions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **versionId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deployEnvironment()` + +```php +deployEnvironment($projectId, $environmentId, $environmentDeployInput): \Upsun\Model\AcceptedResponse +``` + +Deploy an environment + +Trigger a controlled [manual deployment](https://docs.upsun.com/learn/overview/build-deploy.html#manual-deployment) to release all the staged changes + +### Example + +```php +deployEnvironment($projectId, $environmentId, $environmentDeployInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->deployEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentDeployInput** | [**\Upsun\Model\EnvironmentDeployInput**](../Model/EnvironmentDeployInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getEnvironment()` + +```php +getEnvironment($projectId, $environmentId): \Upsun\Model\Environment +``` + +Get an environment + +Retrieve the details of a single existing environment. + +### Example + +```php +getEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->getEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Environment**](../Model/Environment.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsEnvironmentsVersions()` + +```php +getProjectsEnvironmentsVersions($projectId, $environmentId, $versionId): \Upsun\Model\Version +``` + +List the version + +List the `{versionId}` version. A routing percentage for this version may be specified for staged rollouts (if the deployment target supports it). + +### Example + +```php +getProjectsEnvironmentsVersions($projectId, $environmentId, $versionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->getProjectsEnvironmentsVersions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **versionId** | **string**| | | + +### Return type + +[**\Upsun\Model\Version**](../Model/Version.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `initializeEnvironment()` + +```php +initializeEnvironment($projectId, $environmentId, $environmentInitializeInput): \Upsun\Model\AcceptedResponse +``` + +Initialize a new environment + +Initialize and configure a new environment with an existing repository. The payload is the url of a git repository with a profile name: ``` { \"repository\": \"git@github.com:platformsh/a-project-template.git@master\", \"profile\": \"Example Project\", \"files\": [ { \"mode\": 0600, \"path\": \"config.json\", \"contents\": \"XXXXXXXX\" } ] } ``` It can optionally carry additional files that will be committed to the repository, the POSIX file mode to set on each file, and the base64-encoded contents of each file. This endpoint can also add a second repository URL in the `config` parameter that will be added to the contents of the first. This allows you to put your application in one repository and the Upsun YAML configuration files in another. + +### Example + +```php +initializeEnvironment($projectId, $environmentId, $environmentInitializeInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->initializeEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentInitializeInput** | [**\Upsun\Model\EnvironmentInitializeInput**](../Model/EnvironmentInitializeInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironments()` + +```php +listProjectsEnvironments($projectId): \Upsun\Model\Environment[] +``` + +Get list of project environments + +Retrieve a list of a project's existing environments and the information associated with each environment. + +### Example + +```php +listProjectsEnvironments($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->listProjectsEnvironments: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Environment[]**](../Model/Environment.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsVersions()` + +```php +listProjectsEnvironmentsVersions($projectId, $environmentId): \Upsun\Model\Version[] +``` + +List versions associated with the environment + +List versions associated with the `{environmentId}` environment. At least one version always exists. When multiple versions exist, it means that multiple versions of an app are deployed. The deployment target type denotes whether staged deployment is supported. + +### Example + +```php +listProjectsEnvironmentsVersions($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->listProjectsEnvironmentsVersions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Version[]**](../Model/Version.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `mergeEnvironment()` + +```php +mergeEnvironment($projectId, $environmentId, $environmentMergeInput): \Upsun\Model\AcceptedResponse +``` + +Merge an environment + +Merge an environment into its parent. This means that code changes from the branch environment will be merged into the parent branch, and the parent branch will be rebuilt and deployed with the new code changes, retaining the existing data in the parent environment. + +### Example + +```php +mergeEnvironment($projectId, $environmentId, $environmentMergeInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->mergeEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentMergeInput** | [**\Upsun\Model\EnvironmentMergeInput**](../Model/EnvironmentMergeInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `pauseEnvironment()` + +```php +pauseEnvironment($projectId, $environmentId): \Upsun\Model\AcceptedResponse +``` + +Pause an environment + +Pause an environment, stopping all services and applications (except the router). Development environments are often used for a limited time and then abandoned. To prevent unnecessary consumption of resources, development environments that haven't been redeployed in 14 days are automatically paused. You can pause an environment manually at any time using this endpoint. Further information is available in our [public documentation](https://docs.upsun.com/anchors/environments/paused/). + +### Example + +```php +pauseEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->pauseEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `redeployEnvironment()` + +```php +redeployEnvironment($projectId, $environmentId): \Upsun\Model\AcceptedResponse +``` + +Redeploy an environment + +Trigger the redeployment sequence of an environment. + +### Example + +```php +redeployEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->redeployEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `resumeEnvironment()` + +```php +resumeEnvironment($projectId, $environmentId): \Upsun\Model\AcceptedResponse +``` + +Resume a paused environment + +Resume a paused environment, restarting all services and applications. Development environments that haven't been used for 14 days will be paused automatically. They can be resumed via a redeployment or manually using this endpoint or the CLI as described in the [public documentation](https://docs.upsun.com/anchors/environments/paused/). + +### Example + +```php +resumeEnvironment($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->resumeEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `synchronizeEnvironment()` + +```php +synchronizeEnvironment($projectId, $environmentId, $environmentSynchronizeInput): \Upsun\Model\AcceptedResponse +``` + +Synchronize a child environment with its parent + +This synchronizes the code and/or data of an environment with that of its parent, then redeploys the environment. Synchronization is only possible if a branch has no unmerged commits and it can be fast-forwarded. If data synchronization is specified, the data in the environment will be overwritten with that of its parent. + +### Example + +```php +synchronizeEnvironment($projectId, $environmentId, $environmentSynchronizeInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->synchronizeEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentSynchronizeInput** | [**\Upsun\Model\EnvironmentSynchronizeInput**](../Model/EnvironmentSynchronizeInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateEnvironment()` + +```php +updateEnvironment($projectId, $environmentId, $environmentPatch): \Upsun\Model\AcceptedResponse +``` + +Update an environment + +Update the details of a single existing environment. + +### Example + +```php +updateEnvironment($projectId, $environmentId, $environmentPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->updateEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentPatch** | [**\Upsun\Model\EnvironmentPatch**](../Model/EnvironmentPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsEnvironmentsVersions()` + +```php +updateProjectsEnvironmentsVersions($projectId, $environmentId, $versionId, $versionPatch): \Upsun\Model\AcceptedResponse +``` + +Update the version + +Update the `{versionId}` version. A routing percentage for this version may be specified for staged rollouts (if the deployment target supports it). + +### Example + +```php +updateProjectsEnvironmentsVersions($projectId, $environmentId, $versionId, $versionPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentApi->updateProjectsEnvironmentsVersions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **versionId** | **string**| | | +| **versionPatch** | [**\Upsun\Model\VersionPatch**](../Model/VersionPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/EnvironmentBackupsApi.md b/docs/Api/EnvironmentBackupsApi.md new file mode 100644 index 00000000..84a59d9d --- /dev/null +++ b/docs/Api/EnvironmentBackupsApi.md @@ -0,0 +1,302 @@ +# [Upsun\Api\EnvironmentBackupsApi](../src/Api/EnvironmentBackupsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**backupEnvironment()**](EnvironmentBackupsApi.md#backupEnvironment) | **POST** /projects/{projectId}/environments/{environmentId}/backup | Create backup of environment | https://docs.upsun.com/api/#tag/Environment-Backups/operation/backup-environment | +| [**deleteProjectsEnvironmentsBackups()**](EnvironmentBackupsApi.md#deleteProjectsEnvironmentsBackups) | **DELETE** /projects/{projectId}/environments/{environmentId}/backups/{backupId} | Delete an environment backup | https://docs.upsun.com/api/#tag/Environment-Backups/operation/delete-projects-environments-backups | +| [**getProjectsEnvironmentsBackups()**](EnvironmentBackupsApi.md#getProjectsEnvironmentsBackups) | **GET** /projects/{projectId}/environments/{environmentId}/backups/{backupId} | Get an environment backup's info | https://docs.upsun.com/api/#tag/Environment-Backups/operation/get-projects-environments-backups | +| [**listProjectsEnvironmentsBackups()**](EnvironmentBackupsApi.md#listProjectsEnvironmentsBackups) | **GET** /projects/{projectId}/environments/{environmentId}/backups | Get an environment's backup list | https://docs.upsun.com/api/#tag/Environment-Backups/operation/list-projects-environments-backups | +| [**restoreBackup()**](EnvironmentBackupsApi.md#restoreBackup) | **POST** /projects/{projectId}/environments/{environmentId}/backups/{backupId}/restore | Restore an environment snapshot | https://docs.upsun.com/api/#tag/Environment-Backups/operation/restore-backup | + + +## `backupEnvironment()` + +```php +backupEnvironment($projectId, $environmentId, $environmentBackupInput): \Upsun\Model\AcceptedResponse +``` + +Create backup of environment + +Trigger a new backup of an environment to be created. See the [Backups](https://docs.upsun.com/anchors/environments/backup/) section of the documentation for more information. + +### Example + +```php +backupEnvironment($projectId, $environmentId, $environmentBackupInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentBackupsApi->backupEnvironment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentBackupInput** | [**\Upsun\Model\EnvironmentBackupInput**](../Model/EnvironmentBackupInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsEnvironmentsBackups()` + +```php +deleteProjectsEnvironmentsBackups($projectId, $environmentId, $backupId): \Upsun\Model\AcceptedResponse +``` + +Delete an environment backup + +Delete a specific backup from an environment using the `id` of the entry retrieved by the [Get backups list](#tag/Environment-Backups%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1backups%2Fget) endpoint. + +### Example + +```php +deleteProjectsEnvironmentsBackups($projectId, $environmentId, $backupId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentBackupsApi->deleteProjectsEnvironmentsBackups: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **backupId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsEnvironmentsBackups()` + +```php +getProjectsEnvironmentsBackups($projectId, $environmentId, $backupId): \Upsun\Model\Backup +``` + +Get an environment backup's info + +Get the details of a specific backup from an environment using the `id` of the entry retrieved by the [Get backups list](#tag/Environment-Backups%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1backups%2Fget) endpoint. + +### Example + +```php +getProjectsEnvironmentsBackups($projectId, $environmentId, $backupId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentBackupsApi->getProjectsEnvironmentsBackups: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **backupId** | **string**| | | + +### Return type + +[**\Upsun\Model\Backup**](../Model/Backup.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsBackups()` + +```php +listProjectsEnvironmentsBackups($projectId, $environmentId): \Upsun\Model\Backup[] +``` + +Get an environment's backup list + +Retrieve a list of objects representing backups of this environment. + +### Example + +```php +listProjectsEnvironmentsBackups($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentBackupsApi->listProjectsEnvironmentsBackups: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Backup[]**](../Model/Backup.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `restoreBackup()` + +```php +restoreBackup($projectId, $environmentId, $backupId, $environmentRestoreInput): \Upsun\Model\AcceptedResponse +``` + +Restore an environment snapshot + +Restore a specific backup from an environment using the `id` of the entry retrieved by the [Get backups list](#tag/Environment-Backups%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1backups%2Fget) endpoint. + +### Example + +```php +restoreBackup($projectId, $environmentId, $backupId, $environmentRestoreInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentBackupsApi->restoreBackup: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **backupId** | **string**| | | +| **environmentRestoreInput** | [**\Upsun\Model\EnvironmentRestoreInput**](../Model/EnvironmentRestoreInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/EnvironmentTypeApi.md b/docs/Api/EnvironmentTypeApi.md new file mode 100644 index 00000000..d12ff350 --- /dev/null +++ b/docs/Api/EnvironmentTypeApi.md @@ -0,0 +1,119 @@ +# [Upsun\Api\EnvironmentTypeApi](../src/Api/EnvironmentTypeApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getEnvironmentType()**](EnvironmentTypeApi.md#getEnvironmentType) | **GET** /projects/{projectId}/environment-types/{environmentTypeId} | Get environment type links | https://docs.upsun.com/api/#tag/Environment-Type/operation/get-environment-type | +| [**listProjectsEnvironmentTypes()**](EnvironmentTypeApi.md#listProjectsEnvironmentTypes) | **GET** /projects/{projectId}/environment-types | Get environment types | https://docs.upsun.com/api/#tag/Environment-Type/operation/list-projects-environment-types | + + +## `getEnvironmentType()` + +```php +getEnvironmentType($projectId, $environmentTypeId): \Upsun\Model\EnvironmentType +``` + +Get environment type links + +Lists the endpoints used to retrieve info about the environment type. + +### Example + +```php +getEnvironmentType($projectId, $environmentTypeId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentTypeApi->getEnvironmentType: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentTypeId** | **string**| | | + +### Return type + +[**\Upsun\Model\EnvironmentType**](../Model/EnvironmentType.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentTypes()` + +```php +listProjectsEnvironmentTypes($projectId): \Upsun\Model\EnvironmentType[] +``` + +Get environment types + +List all available environment types + +### Example + +```php +listProjectsEnvironmentTypes($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentTypeApi->listProjectsEnvironmentTypes: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\EnvironmentType[]**](../Model/EnvironmentType.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/EnvironmentVariablesApi.md b/docs/Api/EnvironmentVariablesApi.md new file mode 100644 index 00000000..5d1e2c76 --- /dev/null +++ b/docs/Api/EnvironmentVariablesApi.md @@ -0,0 +1,302 @@ +# [Upsun\Api\EnvironmentVariablesApi](../src/Api/EnvironmentVariablesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsEnvironmentsVariables()**](EnvironmentVariablesApi.md#createProjectsEnvironmentsVariables) | **POST** /projects/{projectId}/environments/{environmentId}/variables | Add an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/create-projects-environments-variables | +| [**deleteProjectsEnvironmentsVariables()**](EnvironmentVariablesApi.md#deleteProjectsEnvironmentsVariables) | **DELETE** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Delete an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/delete-projects-environments-variables | +| [**getProjectsEnvironmentsVariables()**](EnvironmentVariablesApi.md#getProjectsEnvironmentsVariables) | **GET** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Get an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/get-projects-environments-variables | +| [**listProjectsEnvironmentsVariables()**](EnvironmentVariablesApi.md#listProjectsEnvironmentsVariables) | **GET** /projects/{projectId}/environments/{environmentId}/variables | Get list of environment variables | https://docs.upsun.com/api/#tag/Environment-Variables/operation/list-projects-environments-variables | +| [**updateProjectsEnvironmentsVariables()**](EnvironmentVariablesApi.md#updateProjectsEnvironmentsVariables) | **PATCH** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Update an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/update-projects-environments-variables | + + +## `createProjectsEnvironmentsVariables()` + +```php +createProjectsEnvironmentsVariables($projectId, $environmentId, $environmentVariableCreateInput): \Upsun\Model\AcceptedResponse +``` + +Add an environment variable + +Add a variable to an environment. The `value` can be either a string or a JSON object (default: string), as specified by the `is_json` boolean flag. Additionally, the inheritability of an environment variable can be determined through the `is_inheritable` flag (default: true). See the [Environment Variables](https://docs.upsun.com/anchors/variables/set/environment/create/) section in our documentation for more information. + +### Example + +```php +createProjectsEnvironmentsVariables($projectId, $environmentId, $environmentVariableCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentVariablesApi->createProjectsEnvironmentsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentVariableCreateInput** | [**\Upsun\Model\EnvironmentVariableCreateInput**](../Model/EnvironmentVariableCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsEnvironmentsVariables()` + +```php +deleteProjectsEnvironmentsVariables($projectId, $environmentId, $variableId): \Upsun\Model\AcceptedResponse +``` + +Delete an environment variable + +Delete a single user-defined environment variable. + +### Example + +```php +deleteProjectsEnvironmentsVariables($projectId, $environmentId, $variableId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentVariablesApi->deleteProjectsEnvironmentsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **variableId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsEnvironmentsVariables()` + +```php +getProjectsEnvironmentsVariables($projectId, $environmentId, $variableId): \Upsun\Model\EnvironmentVariable +``` + +Get an environment variable + +Retrieve a single user-defined environment variable. + +### Example + +```php +getProjectsEnvironmentsVariables($projectId, $environmentId, $variableId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentVariablesApi->getProjectsEnvironmentsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **variableId** | **string**| | | + +### Return type + +[**\Upsun\Model\EnvironmentVariable**](../Model/EnvironmentVariable.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsVariables()` + +```php +listProjectsEnvironmentsVariables($projectId, $environmentId): \Upsun\Model\EnvironmentVariable[] +``` + +Get list of environment variables + +Retrieve a list of objects representing the user-defined variables within an environment. + +### Example + +```php +listProjectsEnvironmentsVariables($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentVariablesApi->listProjectsEnvironmentsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\EnvironmentVariable[]**](../Model/EnvironmentVariable.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsEnvironmentsVariables()` + +```php +updateProjectsEnvironmentsVariables($projectId, $environmentId, $variableId, $environmentVariablePatch): \Upsun\Model\AcceptedResponse +``` + +Update an environment variable + +Update a single user-defined environment variable. The `value` can be either a string or a JSON object (default: string), as specified by the `is_json` boolean flag. Additionally, the inheritability of an environment variable can be determined through the `is_inheritable` flag (default: true). See the [Variables](https://docs.upsun.com/anchors/variables/) section in our documentation for more information. + +### Example + +```php +updateProjectsEnvironmentsVariables($projectId, $environmentId, $variableId, $environmentVariablePatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling EnvironmentVariablesApi->updateProjectsEnvironmentsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **variableId** | **string**| | | +| **environmentVariablePatch** | [**\Upsun\Model\EnvironmentVariablePatch**](../Model/EnvironmentVariablePatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/GrantsApi.md b/docs/Api/GrantsApi.md new file mode 100644 index 00000000..64dab4f8 --- /dev/null +++ b/docs/Api/GrantsApi.md @@ -0,0 +1,68 @@ +# [Upsun\Api\GrantsApi](../src/Api/GrantsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**listUserExtendedAccess()**](GrantsApi.md#listUserExtendedAccess) | **GET** /users/{user_id}/extended-access | List extended access of a user | https://docs.upsun.com/api/#tag/Grants/operation/list-user-extended-access | + + +## `listUserExtendedAccess()` + +```php +listUserExtendedAccess($userId, $filterResourceType, $filterOrganizationId, $filterPermissions): \Upsun\Model\ListUserExtendedAccess200Response +``` + +List extended access of a user + +List extended access of the given user, which includes both individual and team access to project and organization. + +### Example + +```php +listUserExtendedAccess($userId, $filterResourceType, $filterOrganizationId, $filterPermissions); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling GrantsApi->listUserExtendedAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **filterResourceType** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `resource_type` (project or organization) using one or more operators. | [optional] | +| **filterOrganizationId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `organization_id` using one or more operators. | [optional] | +| **filterPermissions** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `permissions` using one or more operators. | [optional] | + +### Return type + +[**\Upsun\Model\ListUserExtendedAccess200Response**](../Model/ListUserExtendedAccess200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/InvoicesApi.md b/docs/Api/InvoicesApi.md new file mode 100644 index 00000000..1048d914 --- /dev/null +++ b/docs/Api/InvoicesApi.md @@ -0,0 +1,127 @@ +# [Upsun\Api\InvoicesApi](../src/Api/InvoicesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getOrgInvoice()**](InvoicesApi.md#getOrgInvoice) | **GET** /organizations/{organization_id}/invoices/{invoice_id} | Get invoice | https://docs.upsun.com/api/#tag/Invoices/operation/get-org-invoice | +| [**listOrgInvoices()**](InvoicesApi.md#listOrgInvoices) | **GET** /organizations/{organization_id}/invoices | List invoices | https://docs.upsun.com/api/#tag/Invoices/operation/list-org-invoices | + + +## `getOrgInvoice()` + +```php +getOrgInvoice($invoiceId, $organizationId): \Upsun\Model\Invoice +``` + +Get invoice + +Retrieves an invoice for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgInvoice($invoiceId, $organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling InvoicesApi->getOrgInvoice: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **invoiceId** | **string**| The ID of the invoice. | | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\Invoice**](../Model/Invoice.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgInvoices()` + +```php +listOrgInvoices($organizationId, $filterStatus, $filterType, $filterOrderId, $page): \Upsun\Model\ListOrgInvoices200Response +``` + +List invoices + +Retrieves a list of invoices for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$filterStatus = 'filterStatus_example'; // string | The status of the invoice. +$filterType = 'filterType_example'; // string | The invoice type. Use invoice for standard invoices, credit_memo for refund/credit invoices. +$filterOrderId = 'filterOrderId_example'; // string | The order id of Invoice. +$page = 56; // int | Page to be displayed. Defaults to 1. + +try { + $result = $apiInstance->listOrgInvoices($organizationId, $filterStatus, $filterType, $filterOrderId, $page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling InvoicesApi->listOrgInvoices: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **filterStatus** | **string**| The status of the invoice. | [optional] | +| **filterType** | **string**| The invoice type. Use invoice for standard invoices, credit_memo for refund/credit invoices. | [optional] | +| **filterOrderId** | **string**| The order id of Invoice. | [optional] | +| **page** | **int**| Page to be displayed. Defaults to 1. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgInvoices200Response**](../Model/ListOrgInvoices200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/MfaApi.md b/docs/Api/MfaApi.md new file mode 100644 index 00000000..b76b7ab0 --- /dev/null +++ b/docs/Api/MfaApi.md @@ -0,0 +1,448 @@ +# [Upsun\Api\MfaApi](../src/Api/MfaApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**confirmTotpEnrollment()**](MfaApi.md#confirmTotpEnrollment) | **POST** /users/{user_id}/totp | Confirm TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/confirm-totp-enrollment | +| [**disableOrgMfaEnforcement()**](MfaApi.md#disableOrgMfaEnforcement) | **POST** /organizations/{organization_id}/mfa-enforcement/disable | Disable organization MFA enforcement | https://docs.upsun.com/api/#tag/Mfa/operation/disable-org-mfa-enforcement | +| [**enableOrgMfaEnforcement()**](MfaApi.md#enableOrgMfaEnforcement) | **POST** /organizations/{organization_id}/mfa-enforcement/enable | Enable organization MFA enforcement | https://docs.upsun.com/api/#tag/Mfa/operation/enable-org-mfa-enforcement | +| [**getOrgMfaEnforcement()**](MfaApi.md#getOrgMfaEnforcement) | **GET** /organizations/{organization_id}/mfa-enforcement | Get organization MFA settings | https://docs.upsun.com/api/#tag/Mfa/operation/get-org-mfa-enforcement | +| [**getTotpEnrollment()**](MfaApi.md#getTotpEnrollment) | **GET** /users/{user_id}/totp | Get information about TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/get-totp-enrollment | +| [**recreateRecoveryCodes()**](MfaApi.md#recreateRecoveryCodes) | **POST** /users/{user_id}/codes | Re-create recovery codes | https://docs.upsun.com/api/#tag/Mfa/operation/recreate-recovery-codes | +| [**sendOrgMfaReminders()**](MfaApi.md#sendOrgMfaReminders) | **POST** /organizations/{organization_id}/mfa/remind | Send MFA reminders to organization members | https://docs.upsun.com/api/#tag/Mfa/operation/send-org-mfa-reminders | +| [**withdrawTotpEnrollment()**](MfaApi.md#withdrawTotpEnrollment) | **DELETE** /users/{user_id}/totp | Withdraw TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/withdraw-totp-enrollment | + + +## `confirmTotpEnrollment()` + +```php +confirmTotpEnrollment($userId, $confirmTotpEnrollmentRequest): \Upsun\Model\ConfirmTotpEnrollment200Response +``` + +Confirm TOTP enrollment + +Confirms the given TOTP enrollment. + +### Example + +```php +confirmTotpEnrollment($userId, $confirmTotpEnrollmentRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->confirmTotpEnrollment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **confirmTotpEnrollmentRequest** | [**\Upsun\Model\ConfirmTotpEnrollmentRequest**](../Model/ConfirmTotpEnrollmentRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\ConfirmTotpEnrollment200Response**](../Model/ConfirmTotpEnrollment200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `disableOrgMfaEnforcement()` + +```php +disableOrgMfaEnforcement($organizationId) +``` + +Disable organization MFA enforcement + +Disables MFA enforcement for the specified organization. + +### Example + +```php +disableOrgMfaEnforcement($organizationId); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->disableOrgMfaEnforcement: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `enableOrgMfaEnforcement()` + +```php +enableOrgMfaEnforcement($organizationId) +``` + +Enable organization MFA enforcement + +Enables MFA enforcement for the specified organization. + +### Example + +```php +enableOrgMfaEnforcement($organizationId); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->enableOrgMfaEnforcement: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgMfaEnforcement()` + +```php +getOrgMfaEnforcement($organizationId): \Upsun\Model\OrganizationMfaEnforcement +``` + +Get organization MFA settings + +Retrieves MFA settings for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgMfaEnforcement($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->getOrgMfaEnforcement: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\OrganizationMfaEnforcement**](../Model/OrganizationMfaEnforcement.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getTotpEnrollment()` + +```php +getTotpEnrollment($userId): \Upsun\Model\GetTotpEnrollment200Response +``` + +Get information about TOTP enrollment + +Retrieves TOTP enrollment information. + +### Example + +```php +getTotpEnrollment($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->getTotpEnrollment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\GetTotpEnrollment200Response**](../Model/GetTotpEnrollment200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `recreateRecoveryCodes()` + +```php +recreateRecoveryCodes($userId): \Upsun\Model\ConfirmTotpEnrollment200Response +``` + +Re-create recovery codes + +Re-creates recovery codes for the MFA enrollment. + +### Example + +```php +recreateRecoveryCodes($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->recreateRecoveryCodes: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\ConfirmTotpEnrollment200Response**](../Model/ConfirmTotpEnrollment200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `sendOrgMfaReminders()` + +```php +sendOrgMfaReminders($organizationId, $sendOrgMfaRemindersRequest): array +``` + +Send MFA reminders to organization members + +Sends a reminder about setting up MFA to the specified organization members. + +### Example + +```php +sendOrgMfaReminders($organizationId, $sendOrgMfaRemindersRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->sendOrgMfaReminders: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **sendOrgMfaRemindersRequest** | [**\Upsun\Model\SendOrgMfaRemindersRequest**](../Model/SendOrgMfaRemindersRequest.md)| | [optional] | + +### Return type + +[**array**](../Model/SendOrgMfaReminders200ResponseValue.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `withdrawTotpEnrollment()` + +```php +withdrawTotpEnrollment($userId) +``` + +Withdraw TOTP enrollment + +Withdraws from the TOTP enrollment. + +### Example + +```php +withdrawTotpEnrollment($userId); +} catch (Exception $e) { + echo 'Exception when calling MfaApi->withdrawTotpEnrollment: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrdersApi.md b/docs/Api/OrdersApi.md new file mode 100644 index 00000000..a6fa9701 --- /dev/null +++ b/docs/Api/OrdersApi.md @@ -0,0 +1,238 @@ +# [Upsun\Api\OrdersApi](../src/Api/OrdersApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createAuthorizationCredentials()**](OrdersApi.md#createAuthorizationCredentials) | **POST** /organizations/{organization_id}/orders/{order_id}/authorize | Create confirmation credentials for for 3D-Secure | https://docs.upsun.com/api/#tag/Orders/operation/create-authorization-credentials | +| [**downloadInvoice()**](OrdersApi.md#downloadInvoice) | **GET** /orders/download | Download an invoice. | https://docs.upsun.com/api/#tag/Orders/operation/download-invoice | +| [**getOrgOrder()**](OrdersApi.md#getOrgOrder) | **GET** /organizations/{organization_id}/orders/{order_id} | Get order | https://docs.upsun.com/api/#tag/Orders/operation/get-org-order | +| [**listOrgOrders()**](OrdersApi.md#listOrgOrders) | **GET** /organizations/{organization_id}/orders | List orders | https://docs.upsun.com/api/#tag/Orders/operation/list-org-orders | + + +## `createAuthorizationCredentials()` + +```php +createAuthorizationCredentials($organizationId, $orderId): \Upsun\Model\CreateAuthorizationCredentials200Response +``` + +Create confirmation credentials for for 3D-Secure + +Creates confirmation credentials for payments that require online authorization + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$orderId = 'orderId_example'; // string | The ID of the order. + +try { + $result = $apiInstance->createAuthorizationCredentials($organizationId, $orderId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrdersApi->createAuthorizationCredentials: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **orderId** | **string**| The ID of the order. | | + +### Return type + +[**\Upsun\Model\CreateAuthorizationCredentials200Response**](../Model/CreateAuthorizationCredentials200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `downloadInvoice()` + +```php +downloadInvoice($token) +``` + +Download an invoice. + +### Example + +```php +downloadInvoice($token); +} catch (Exception $e) { + echo 'Exception when calling OrdersApi->downloadInvoice: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **token** | **string**| JWT for invoice. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/pdf` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgOrder()` + +```php +getOrgOrder($organizationId, $orderId, $mode): \Upsun\Model\Order +``` + +Get order + +Retrieves an order for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$orderId = 'orderId_example'; // string | The ID of the order. +$mode = 'mode_example'; // string | The output mode. + +try { + $result = $apiInstance->getOrgOrder($organizationId, $orderId, $mode); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrdersApi->getOrgOrder: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **orderId** | **string**| The ID of the order. | | +| **mode** | **string**| The output mode. | [optional] | + +### Return type + +[**\Upsun\Model\Order**](../Model/Order.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgOrders()` + +```php +listOrgOrders($organizationId, $filterStatus, $filterTotal, $page, $mode): \Upsun\Model\ListOrgOrders200Response +``` + +List orders + +Retrieves orders for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$filterStatus = 'filterStatus_example'; // string | The status of the order. +$filterTotal = 56; // int | The total of the order. +$page = 56; // int | Page to be displayed. Defaults to 1. +$mode = 'mode_example'; // string | The output mode. + +try { + $result = $apiInstance->listOrgOrders($organizationId, $filterStatus, $filterTotal, $page, $mode); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrdersApi->listOrgOrders: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **filterStatus** | **string**| The status of the order. | [optional] | +| **filterTotal** | **int**| The total of the order. | [optional] | +| **page** | **int**| Page to be displayed. Defaults to 1. | [optional] | +| **mode** | **string**| The output mode. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgOrders200Response**](../Model/ListOrgOrders200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrganizationInvitationsApi.md b/docs/Api/OrganizationInvitationsApi.md new file mode 100644 index 00000000..83d7e9b7 --- /dev/null +++ b/docs/Api/OrganizationInvitationsApi.md @@ -0,0 +1,185 @@ +# [Upsun\Api\OrganizationInvitationsApi](../src/Api/OrganizationInvitationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**cancelOrgInvite()**](OrganizationInvitationsApi.md#cancelOrgInvite) | **DELETE** /organizations/{organization_id}/invitations/{invitation_id} | Cancel a pending invitation to an organization | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/cancel-org-invite | +| [**createOrgInvite()**](OrganizationInvitationsApi.md#createOrgInvite) | **POST** /organizations/{organization_id}/invitations | Invite user to an organization by email | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/create-org-invite | +| [**listOrgInvites()**](OrganizationInvitationsApi.md#listOrgInvites) | **GET** /organizations/{organization_id}/invitations | List invitations to an organization | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/list-org-invites | + + +## `cancelOrgInvite()` + +```php +cancelOrgInvite($organizationId, $invitationId) +``` + +Cancel a pending invitation to an organization + +Cancels the specified invitation. + +### Example + +```php +cancelOrgInvite($organizationId, $invitationId); +} catch (Exception $e) { + echo 'Exception when calling OrganizationInvitationsApi->cancelOrgInvite: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **invitationId** | **string**| The ID of the invitation. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createOrgInvite()` + +```php +createOrgInvite($organizationId, $createOrgInviteRequest): \Upsun\Model\OrganizationInvitation +``` + +Invite user to an organization by email + +Creates an invitation to an organization for a user with the specified email address. + +### Example + +```php +createOrgInvite($organizationId, $createOrgInviteRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationInvitationsApi->createOrgInvite: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **createOrgInviteRequest** | [**\Upsun\Model\CreateOrgInviteRequest**](../Model/CreateOrgInviteRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationInvitation**](../Model/OrganizationInvitation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgInvites()` + +```php +listOrgInvites($organizationId, $filterState, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\OrganizationInvitation[] +``` + +List invitations to an organization + +Returns a list of invitations to an organization. + +### Example + +```php + Use a dash (\"-\") to sort descending. + +try { + $result = $apiInstance->listOrgInvites($organizationId, $filterState, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationInvitationsApi->listOrgInvites: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **filterState** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `state` of the invtations: \"pending\" (default), \"error\". | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending. | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationInvitation[]**](../Model/OrganizationInvitation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrganizationManagementApi.md b/docs/Api/OrganizationManagementApi.md new file mode 100644 index 00000000..4c950256 --- /dev/null +++ b/docs/Api/OrganizationManagementApi.md @@ -0,0 +1,284 @@ +# [Upsun\Api\OrganizationManagementApi](../src/Api/OrganizationManagementApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**estimateOrg()**](OrganizationManagementApi.md#estimateOrg) | **GET** /organizations/{organization_id}/estimate | Estimate total spend | https://docs.upsun.com/api/#tag/Organization-Management/operation/estimate-org | +| [**getOrgBillingAlertConfig()**](OrganizationManagementApi.md#getOrgBillingAlertConfig) | **GET** /organizations/{organization_id}/alerts/billing | Get billing alert configuration | https://docs.upsun.com/api/#tag/Organization-Management/operation/get-org-billing-alert-config | +| [**getOrgPrepaymentInfo()**](OrganizationManagementApi.md#getOrgPrepaymentInfo) | **GET** /organizations/{organization_id}/prepayment | Get organization prepayment information | https://docs.upsun.com/api/#tag/Organization-Management/operation/get-org-prepayment-info | +| [**listOrgPrepaymentTransactions()**](OrganizationManagementApi.md#listOrgPrepaymentTransactions) | **GET** /organizations/{organization_id}/prepayment/transactions | List organization prepayment transactions | https://docs.upsun.com/api/#tag/Organization-Management/operation/list-org-prepayment-transactions | +| [**updateOrgBillingAlertConfig()**](OrganizationManagementApi.md#updateOrgBillingAlertConfig) | **PATCH** /organizations/{organization_id}/alerts/billing | Update billing alert configuration | https://docs.upsun.com/api/#tag/Organization-Management/operation/update-org-billing-alert-config | + + +## `estimateOrg()` + +```php +estimateOrg($organizationId): \Upsun\Model\OrganizationEstimationObject +``` + +Estimate total spend + +Estimates the total spend for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->estimateOrg($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationManagementApi->estimateOrg: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\OrganizationEstimationObject**](../Model/OrganizationEstimationObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgBillingAlertConfig()` + +```php +getOrgBillingAlertConfig($organizationId): \Upsun\Model\OrganizationAlertConfig +``` + +Get billing alert configuration + +Retrieves billing alert configuration for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgBillingAlertConfig($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationManagementApi->getOrgBillingAlertConfig: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\OrganizationAlertConfig**](../Model/OrganizationAlertConfig.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgPrepaymentInfo()` + +```php +getOrgPrepaymentInfo($organizationId): \Upsun\Model\GetOrgPrepaymentInfo200Response +``` + +Get organization prepayment information + +Retrieves prepayment information for the specified organization, if applicable. + +### Example + +```php +getOrgPrepaymentInfo($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationManagementApi->getOrgPrepaymentInfo: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +[**\Upsun\Model\GetOrgPrepaymentInfo200Response**](../Model/GetOrgPrepaymentInfo200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgPrepaymentTransactions()` + +```php +listOrgPrepaymentTransactions($organizationId): \Upsun\Model\ListOrgPrepaymentTransactions200Response +``` + +List organization prepayment transactions + +Retrieves a list of prepayment transactions for the specified organization, if applicable. + +### Example + +```php +listOrgPrepaymentTransactions($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationManagementApi->listOrgPrepaymentTransactions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +[**\Upsun\Model\ListOrgPrepaymentTransactions200Response**](../Model/ListOrgPrepaymentTransactions200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgBillingAlertConfig()` + +```php +updateOrgBillingAlertConfig($organizationId, $updateOrgBillingAlertConfigRequest): \Upsun\Model\OrganizationAlertConfig +``` + +Update billing alert configuration + +Updates billing alert configuration for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$updateOrgBillingAlertConfigRequest = new \Upsun\Model\UpdateOrgBillingAlertConfigRequest(); // \Upsun\Model\UpdateOrgBillingAlertConfigRequest + +try { + $result = $apiInstance->updateOrgBillingAlertConfig($organizationId, $updateOrgBillingAlertConfigRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationManagementApi->updateOrgBillingAlertConfig: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **updateOrgBillingAlertConfigRequest** | [**\Upsun\Model\UpdateOrgBillingAlertConfigRequest**](../Model/UpdateOrgBillingAlertConfigRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationAlertConfig**](../Model/OrganizationAlertConfig.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrganizationMembersApi.md b/docs/Api/OrganizationMembersApi.md new file mode 100644 index 00000000..9a4f2690 --- /dev/null +++ b/docs/Api/OrganizationMembersApi.md @@ -0,0 +1,301 @@ +# [Upsun\Api\OrganizationMembersApi](../src/Api/OrganizationMembersApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createOrgMember()**](OrganizationMembersApi.md#createOrgMember) | **POST** /organizations/{organization_id}/members | Create organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/create-org-member | +| [**deleteOrgMember()**](OrganizationMembersApi.md#deleteOrgMember) | **DELETE** /organizations/{organization_id}/members/{user_id} | Delete organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/delete-org-member | +| [**getOrgMember()**](OrganizationMembersApi.md#getOrgMember) | **GET** /organizations/{organization_id}/members/{user_id} | Get organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/get-org-member | +| [**listOrgMembers()**](OrganizationMembersApi.md#listOrgMembers) | **GET** /organizations/{organization_id}/members | List organization members | https://docs.upsun.com/api/#tag/Organization-Members/operation/list-org-members | +| [**updateOrgMember()**](OrganizationMembersApi.md#updateOrgMember) | **PATCH** /organizations/{organization_id}/members/{user_id} | Update organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/update-org-member | + + +## `createOrgMember()` + +```php +createOrgMember($organizationId, $createOrgMemberRequest): \Upsun\Model\OrganizationMember +``` + +Create organization member + +Creates a new organization member. + +### Example + +```php +createOrgMember($organizationId, $createOrgMemberRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationMembersApi->createOrgMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **createOrgMemberRequest** | [**\Upsun\Model\CreateOrgMemberRequest**](../Model/CreateOrgMemberRequest.md)| | | + +### Return type + +[**\Upsun\Model\OrganizationMember**](../Model/OrganizationMember.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteOrgMember()` + +```php +deleteOrgMember($organizationId, $userId) +``` + +Delete organization member + +Deletes the specified organization member. + +### Example + +```php +deleteOrgMember($organizationId, $userId); +} catch (Exception $e) { + echo 'Exception when calling OrganizationMembersApi->deleteOrgMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgMember()` + +```php +getOrgMember($organizationId, $userId): \Upsun\Model\OrganizationMember +``` + +Get organization member + +Retrieves the specified organization member. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$userId = d81c8ee2-44b3-429f-b944-a33ad7437690; // string | The ID of the user. + +try { + $result = $apiInstance->getOrgMember($organizationId, $userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationMembersApi->getOrgMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\OrganizationMember**](../Model/OrganizationMember.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgMembers()` + +```php +listOrgMembers($organizationId, $filterPermissions, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListOrgMembers200Response +``` + +List organization members + +Accessible to organization owners and members with the \"manage members\" permission. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$filterPermissions = new \Upsun\Model\\Upsun\Model\ArrayFilter(); // \Upsun\Model\ArrayFilter | Allows filtering by `permissions` using one or more operators. +$pageSize = 56; // int | Determines the number of items to show. +$pageBefore = 'pageBefore_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$pageAfter = 'pageAfter_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$sort = -updated_at; // string | Allows sorting by a single field.
Use a dash (\"-\") to sort descending.
Supported fields: `created_at`, `updated_at`. + +try { + $result = $apiInstance->listOrgMembers($organizationId, $filterPermissions, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationMembersApi->listOrgMembers: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **filterPermissions** | [**\Upsun\Model\ArrayFilter**](../Model/.md)| Allows filtering by `permissions` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgMembers200Response**](../Model/ListOrgMembers200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgMember()` + +```php +updateOrgMember($organizationId, $userId, $updateOrgMemberRequest): \Upsun\Model\OrganizationMember +``` + +Update organization member + +Updates the specified organization member. + +### Example + +```php +updateOrgMember($organizationId, $userId, $updateOrgMemberRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationMembersApi->updateOrgMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **userId** | **string**| The ID of the user. | | +| **updateOrgMemberRequest** | [**\Upsun\Model\UpdateOrgMemberRequest**](../Model/UpdateOrgMemberRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationMember**](../Model/OrganizationMember.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrganizationProjectsApi.md b/docs/Api/OrganizationProjectsApi.md new file mode 100644 index 00000000..7b8d79de --- /dev/null +++ b/docs/Api/OrganizationProjectsApi.md @@ -0,0 +1,372 @@ +# [Upsun\Api\OrganizationProjectsApi](../src/Api/OrganizationProjectsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createOrgProject()**](OrganizationProjectsApi.md#createOrgProject) | **POST** /organizations/{organization_id}/projects | Create project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/create-org-project | +| [**deleteOrgProject()**](OrganizationProjectsApi.md#deleteOrgProject) | **DELETE** /organizations/{organization_id}/projects/{project_id} | Delete project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/delete-org-project | +| [**getOrgProject()**](OrganizationProjectsApi.md#getOrgProject) | **GET** /organizations/{organization_id}/projects/{project_id} | Get project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/get-org-project | +| [**listOrgProjects()**](OrganizationProjectsApi.md#listOrgProjects) | **GET** /organizations/{organization_id}/projects | List projects | https://docs.upsun.com/api/#tag/Organization-Projects/operation/list-org-projects | +| [**queryProjectCarbon()**](OrganizationProjectsApi.md#queryProjectCarbon) | **GET** /organizations/{organization_id}/projects/{project_id}/metrics/carbon | Query project carbon emissions metrics | https://docs.upsun.com/api/#tag/Organization-Projects/operation/query-project-carbon | +| [**updateOrgProject()**](OrganizationProjectsApi.md#updateOrgProject) | **PATCH** /organizations/{organization_id}/projects/{project_id} | Update project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/update-org-project | + + +## `createOrgProject()` + +```php +createOrgProject($organizationId, $createOrgProjectRequest): \Upsun\Model\OrganizationProject +``` + +Create project + +Creates a new project in the specified organization. + +### Example + +```php +createOrgProject($organizationId, $createOrgProjectRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->createOrgProject: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **createOrgProjectRequest** | [**\Upsun\Model\CreateOrgProjectRequest**](../Model/CreateOrgProjectRequest.md)| | | + +### Return type + +[**\Upsun\Model\OrganizationProject**](../Model/OrganizationProject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteOrgProject()` + +```php +deleteOrgProject($organizationId, $projectId) +``` + +Delete project + +Deletes the specified project. + +### Example + +```php +deleteOrgProject($organizationId, $projectId); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->deleteOrgProject: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgProject()` + +```php +getOrgProject($organizationId, $projectId): \Upsun\Model\OrganizationProject +``` + +Get project + +Retrieves the specified project. + +### Example + +```php +getOrgProject($organizationId, $projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->getOrgProject: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +[**\Upsun\Model\OrganizationProject**](../Model/OrganizationProject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgProjects()` + +```php +listOrgProjects($organizationId, $filterId, $filterTitle, $filterStatus, $filterUpdatedAt, $filterCreatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListOrgProjects200Response +``` + +List projects + +Retrieves a list of projects for the specified organization. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `id`, `created_at`, `updated_at`. + +try { + $result = $apiInstance->listOrgProjects($organizationId, $filterId, $filterTitle, $filterStatus, $filterUpdatedAt, $filterCreatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->listOrgProjects: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **filterId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `id` using one or more operators. | [optional] | +| **filterTitle** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `title` using one or more operators. | [optional] | +| **filterStatus** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `status` using one or more operators. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **filterCreatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `created_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `id`, `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgProjects200Response**](../Model/ListOrgProjects200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `queryProjectCarbon()` + +```php +queryProjectCarbon($organizationId, $projectId, $from, $to, $interval): \Upsun\Model\ProjectCarbon +``` + +Query project carbon emissions metrics + +Queries the carbon emission data for the specified project using the supplied parameters. + +### Example + +```php +queryProjectCarbon($organizationId, $projectId, $from, $to, $interval); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->queryProjectCarbon: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **projectId** | **string**| The ID of the project. | | +| **from** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| The start of the time frame for the query. Inclusive. | [optional] | +| **to** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| The end of the time frame for the query. Exclusive. | [optional] | +| **interval** | **string**| The interval by which the query groups the results. of the time frame for the query. Exclusive. | [optional] | + +### Return type + +[**\Upsun\Model\ProjectCarbon**](../Model/ProjectCarbon.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgProject()` + +```php +updateOrgProject($organizationId, $projectId, $updateOrgProjectRequest): \Upsun\Model\OrganizationProject +``` + +Update project + +Updates the specified project. + +### Example + +```php +updateOrgProject($organizationId, $projectId, $updateOrgProjectRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationProjectsApi->updateOrgProject: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **projectId** | **string**| The ID of the project. | | +| **updateOrgProjectRequest** | [**\Upsun\Model\UpdateOrgProjectRequest**](../Model/UpdateOrgProjectRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\OrganizationProject**](../Model/OrganizationProject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/OrganizationsApi.md b/docs/Api/OrganizationsApi.md new file mode 100644 index 00000000..c919431f --- /dev/null +++ b/docs/Api/OrganizationsApi.md @@ -0,0 +1,380 @@ +# [Upsun\Api\OrganizationsApi](../src/Api/OrganizationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createOrg()**](OrganizationsApi.md#createOrg) | **POST** /organizations | Create organization | https://docs.upsun.com/api/#tag/Organizations/operation/create-org | +| [**deleteOrg()**](OrganizationsApi.md#deleteOrg) | **DELETE** /organizations/{organization_id} | Delete organization | https://docs.upsun.com/api/#tag/Organizations/operation/delete-org | +| [**getOrg()**](OrganizationsApi.md#getOrg) | **GET** /organizations/{organization_id} | Get organization | https://docs.upsun.com/api/#tag/Organizations/operation/get-org | +| [**listOrgs()**](OrganizationsApi.md#listOrgs) | **GET** /organizations | List organizations | https://docs.upsun.com/api/#tag/Organizations/operation/list-orgs | +| [**listUserOrgs()**](OrganizationsApi.md#listUserOrgs) | **GET** /users/{user_id}/organizations | User organizations | https://docs.upsun.com/api/#tag/Organizations/operation/list-user-orgs | +| [**updateOrg()**](OrganizationsApi.md#updateOrg) | **PATCH** /organizations/{organization_id} | Update organization | https://docs.upsun.com/api/#tag/Organizations/operation/update-org | + + +## `createOrg()` + +```php +createOrg($createOrgRequest): \Upsun\Model\Organization +``` + +Create organization + +Creates a new organization. + +### Example + +```php +createOrg($createOrgRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->createOrg: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **createOrgRequest** | [**\Upsun\Model\CreateOrgRequest**](../Model/CreateOrgRequest.md)| | | + +### Return type + +[**\Upsun\Model\Organization**](../Model/Organization.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteOrg()` + +```php +deleteOrg($organizationId) +``` + +Delete organization + +Deletes the specified organization. + +### Example + +```php +deleteOrg($organizationId); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->deleteOrg: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrg()` + +```php +getOrg($organizationId): \Upsun\Model\Organization +``` + +Get organization + +Retrieves the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrg($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->getOrg: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\Organization**](../Model/Organization.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgs()` + +```php +listOrgs($filterId, $filterType, $filterOwnerId, $filterName, $filterLabel, $filterVendor, $filterCapabilities, $filterStatus, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListOrgs200Response +``` + +List organizations + +Non-admin users will only see organizations they are members of. + +### Example + +```php + Defaults to `filter[status][in]=active,restricted,suspended`. +$filterUpdatedAt = new \Upsun\Model\\Upsun\Model\DateTimeFilter(); // \Upsun\Model\DateTimeFilter | Allows filtering by `updated_at` using one or more operators. +$pageSize = 56; // int | Determines the number of items to show. +$pageBefore = 'pageBefore_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$pageAfter = 'pageAfter_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$sort = -updated_at; // string | Allows sorting by a single field.
Use a dash (\"-\") to sort descending.
Supported fields: `name`, `label`, `created_at`, `updated_at`. + +try { + $result = $apiInstance->listOrgs($filterId, $filterType, $filterOwnerId, $filterName, $filterLabel, $filterVendor, $filterCapabilities, $filterStatus, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->listOrgs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **filterId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `id` using one or more operators. | [optional] | +| **filterType** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `type` using one or more operators. | [optional] | +| **filterOwnerId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `owner_id` using one or more operators. | [optional] | +| **filterName** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `name` using one or more operators. | [optional] | +| **filterLabel** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `label` using one or more operators. | [optional] | +| **filterVendor** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `vendor` using one or more operators. | [optional] | +| **filterCapabilities** | [**\Upsun\Model\ArrayFilter**](../Model/.md)| Allows filtering by `capabilites` using one or more operators. | [optional] | +| **filterStatus** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `status` using one or more operators.<br> Defaults to `filter[status][in]=active,restricted,suspended`. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `name`, `label`, `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgs200Response**](../Model/ListOrgs200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listUserOrgs()` + +```php +listUserOrgs($userId, $filterId, $filterType, $filterVendor, $filterStatus, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListUserOrgs200Response +``` + +User organizations + +Retrieves organizations that the specified user is a member of. + +### Example + +```php + Defaults to `filter[status][in]=active,restricted,suspended`. +$filterUpdatedAt = new \Upsun\Model\\Upsun\Model\DateTimeFilter(); // \Upsun\Model\DateTimeFilter | Allows filtering by `updated_at` using one or more operators. +$pageSize = 56; // int | Determines the number of items to show. +$pageBefore = 'pageBefore_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$pageAfter = 'pageAfter_example'; // string | Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. +$sort = -updated_at; // string | Allows sorting by a single field.
Use a dash (\"-\") to sort descending.
Supported fields: `name`, `label`, `created_at`, `updated_at`. + +try { + $result = $apiInstance->listUserOrgs($userId, $filterId, $filterType, $filterVendor, $filterStatus, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->listUserOrgs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **filterId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `id` using one or more operators. | [optional] | +| **filterType** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `type` using one or more operators. | [optional] | +| **filterVendor** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `vendor` using one or more operators. | [optional] | +| **filterStatus** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `status` using one or more operators.<br> Defaults to `filter[status][in]=active,restricted,suspended`. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `name`, `label`, `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListUserOrgs200Response**](../Model/ListUserOrgs200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrg()` + +```php +updateOrg($organizationId, $updateOrgRequest): \Upsun\Model\Organization +``` + +Update organization + +Updates the specified organization. + +### Example + +```php +updateOrg($organizationId, $updateOrgRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling OrganizationsApi->updateOrg: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **updateOrgRequest** | [**\Upsun\Model\UpdateOrgRequest**](../Model/UpdateOrgRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Organization**](../Model/Organization.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/PhoneNumberApi.md b/docs/Api/PhoneNumberApi.md new file mode 100644 index 00000000..4ca50499 --- /dev/null +++ b/docs/Api/PhoneNumberApi.md @@ -0,0 +1,122 @@ +# [Upsun\Api\PhoneNumberApi](../src/Api/PhoneNumberApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**confirmPhoneNumber()**](PhoneNumberApi.md#confirmPhoneNumber) | **POST** /users/{user_id}/phonenumber/{sid} | Confirm phone number | https://docs.upsun.com/api/#tag/PhoneNumber/operation/confirm-phone-number | +| [**verifyPhoneNumber()**](PhoneNumberApi.md#verifyPhoneNumber) | **POST** /users/{user_id}/phonenumber | Verify phone number | https://docs.upsun.com/api/#tag/PhoneNumber/operation/verify-phone-number | + + +## `confirmPhoneNumber()` + +```php +confirmPhoneNumber($sid, $userId, $confirmPhoneNumberRequest) +``` + +Confirm phone number + +Confirms phone number using a verification code. + +### Example + +```php +confirmPhoneNumber($sid, $userId, $confirmPhoneNumberRequest); +} catch (Exception $e) { + echo 'Exception when calling PhoneNumberApi->confirmPhoneNumber: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **sid** | **string**| The session ID obtained from `POST /users/{user_id}/phonenumber`. | | +| **userId** | **string**| The ID of the user. | | +| **confirmPhoneNumberRequest** | [**\Upsun\Model\ConfirmPhoneNumberRequest**](../Model/ConfirmPhoneNumberRequest.md)| | [optional] | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `verifyPhoneNumber()` + +```php +verifyPhoneNumber($userId, $verifyPhoneNumberRequest): \Upsun\Model\VerifyPhoneNumber200Response +``` + +Verify phone number + +Starts a phone number verification session. + +### Example + +```php +verifyPhoneNumber($userId, $verifyPhoneNumberRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling PhoneNumberApi->verifyPhoneNumber: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **verifyPhoneNumberRequest** | [**\Upsun\Model\VerifyPhoneNumberRequest**](../Model/VerifyPhoneNumberRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\VerifyPhoneNumber200Response**](../Model/VerifyPhoneNumber200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProfilesApi.md b/docs/Api/ProfilesApi.md new file mode 100644 index 00000000..c0f1e460 --- /dev/null +++ b/docs/Api/ProfilesApi.md @@ -0,0 +1,231 @@ +# [Upsun\Api\ProfilesApi](../src/Api/ProfilesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getOrgAddress()**](ProfilesApi.md#getOrgAddress) | **GET** /organizations/{organization_id}/address | Get address | https://docs.upsun.com/api/#tag/Profiles/operation/get-org-address | +| [**getOrgProfile()**](ProfilesApi.md#getOrgProfile) | **GET** /organizations/{organization_id}/profile | Get profile | https://docs.upsun.com/api/#tag/Profiles/operation/get-org-profile | +| [**updateOrgAddress()**](ProfilesApi.md#updateOrgAddress) | **PATCH** /organizations/{organization_id}/address | Update address | https://docs.upsun.com/api/#tag/Profiles/operation/update-org-address | +| [**updateOrgProfile()**](ProfilesApi.md#updateOrgProfile) | **PATCH** /organizations/{organization_id}/profile | Update profile | https://docs.upsun.com/api/#tag/Profiles/operation/update-org-profile | + + +## `getOrgAddress()` + +```php +getOrgAddress($organizationId): \Upsun\Model\Address +``` + +Get address + +Retrieves the address for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgAddress($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProfilesApi->getOrgAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\Address**](../Model/Address.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgProfile()` + +```php +getOrgProfile($organizationId): \Upsun\Model\Profile +``` + +Get profile + +Retrieves the profile for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->getOrgProfile($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProfilesApi->getOrgProfile: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\Profile**](../Model/Profile.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgAddress()` + +```php +updateOrgAddress($organizationId, $address): \Upsun\Model\Address +``` + +Update address + +Updates the address for the specified organization. + +### Example + +```php +updateOrgAddress($organizationId, $address); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProfilesApi->updateOrgAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **address** | [**\Upsun\Model\Address**](../Model/Address.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Address**](../Model/Address.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgProfile()` + +```php +updateOrgProfile($organizationId, $updateOrgProfileRequest): \Upsun\Model\Profile +``` + +Update profile + +Updates the profile for the specified organization. + +### Example + +```php +updateOrgProfile($organizationId, $updateOrgProfileRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProfilesApi->updateOrgProfile: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **updateOrgProfileRequest** | [**\Upsun\Model\UpdateOrgProfileRequest**](../Model/UpdateOrgProfileRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Profile**](../Model/Profile.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProjectActivityApi.md b/docs/Api/ProjectActivityApi.md new file mode 100644 index 00000000..35f8effd --- /dev/null +++ b/docs/Api/ProjectActivityApi.md @@ -0,0 +1,176 @@ +# [Upsun\Api\ProjectActivityApi](../src/Api/ProjectActivityApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**actionProjectsActivitiesCancel()**](ProjectActivityApi.md#actionProjectsActivitiesCancel) | **POST** /projects/{projectId}/activities/{activityId}/cancel | Cancel a project activity | https://docs.upsun.com/api/#tag/Project-Activity/operation/action-projects-activities-cancel | +| [**getProjectsActivities()**](ProjectActivityApi.md#getProjectsActivities) | **GET** /projects/{projectId}/activities/{activityId} | Get a project activity log entry | https://docs.upsun.com/api/#tag/Project-Activity/operation/get-projects-activities | +| [**listProjectsActivities()**](ProjectActivityApi.md#listProjectsActivities) | **GET** /projects/{projectId}/activities | Get project activity log | https://docs.upsun.com/api/#tag/Project-Activity/operation/list-projects-activities | + + +## `actionProjectsActivitiesCancel()` + +```php +actionProjectsActivitiesCancel($projectId, $activityId): \Upsun\Model\AcceptedResponse +``` + +Cancel a project activity + +Cancel a single activity as specified by an `id` returned by the [Get project activity log](#tag/Project-Activity%2Fpaths%2F~1projects~1%7BprojectId%7D~1activities%2Fget) endpoint. Please note that not all activities are cancelable. + +### Example + +```php +actionProjectsActivitiesCancel($projectId, $activityId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectActivityApi->actionProjectsActivitiesCancel: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **activityId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsActivities()` + +```php +getProjectsActivities($projectId, $activityId): \Upsun\Model\Activity +``` + +Get a project activity log entry + +Retrieve a single activity log entry as specified by an `id` returned by the [Get project activity log](#tag/Project-Activity%2Fpaths%2F~1projects~1%7BprojectId%7D~1activities%2Fget) endpoint. See the documentation on that endpoint for details about the information this endpoint can return. + +### Example + +```php +getProjectsActivities($projectId, $activityId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectActivityApi->getProjectsActivities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **activityId** | **string**| | | + +### Return type + +[**\Upsun\Model\Activity**](../Model/Activity.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsActivities()` + +```php +listProjectsActivities($projectId): \Upsun\Model\Activity[] +``` + +Get project activity log + +Retrieve a project's activity log including logging actions in all environments within a project. This returns a list of objects with records of actions such as: - Commits being pushed to the repository - A new environment being branched out from the specified environment - A snapshot being created of the specified environment The object includes a timestamp of when the action occurred (`created_at`), when the action concluded (`updated_at`), the current `state` of the action, the action's completion percentage (`completion_percent`), the `environments` it applies to and when the activity expires (`expires_at`). There are other related information in the `payload`. The contents of the `payload` varies based on the `type` of the activity. For example: - An `environment.branch` action's `payload` can contain objects representing the environment's `parent` environment and the branching action's `outcome`. - An `environment.push` action's `payload` can contain objects representing the `environment`, the specific `commits` included in the push, and the `user` who pushed. Expired activities are removed from the project activity log, except the last 100 expired objects provided they are not of type `environment.cron` or `environment.backup`. + +### Example + +```php +listProjectsActivities($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectActivityApi->listProjectsActivities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Activity[]**](../Model/Activity.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProjectApi.md b/docs/Api/ProjectApi.md new file mode 100644 index 00000000..f8702d37 --- /dev/null +++ b/docs/Api/ProjectApi.md @@ -0,0 +1,229 @@ +# [Upsun\Api\ProjectApi](../src/Api/ProjectApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**actionProjectsClearBuildCache()**](ProjectApi.md#actionProjectsClearBuildCache) | **POST** /projects/{projectId}/clear_build_cache | Clear project build cache | https://docs.upsun.com/api/#tag/Project/operation/action-projects-clear-build-cache | +| [**getProjects()**](ProjectApi.md#getProjects) | **GET** /projects/{projectId} | Get a project | https://docs.upsun.com/api/#tag/Project/operation/get-projects | +| [**getProjectsCapabilities()**](ProjectApi.md#getProjectsCapabilities) | **GET** /projects/{projectId}/capabilities | Get a project's capabilities | https://docs.upsun.com/api/#tag/Project/operation/get-projects-capabilities | +| [**updateProjects()**](ProjectApi.md#updateProjects) | **PATCH** /projects/{projectId} | Update a project | https://docs.upsun.com/api/#tag/Project/operation/update-projects | + + +## `actionProjectsClearBuildCache()` + +```php +actionProjectsClearBuildCache($projectId): \Upsun\Model\AcceptedResponse +``` + +Clear project build cache + +On rare occasions, a project's build cache can become corrupted. This endpoint will entirely flush the project's build cache. More information on [clearing the build cache can be found in our user documentation.](https://docs.upsun.com/anchors/troubleshoot/clear-build-cache/) + +### Example + +```php +actionProjectsClearBuildCache($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectApi->actionProjectsClearBuildCache: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjects()` + +```php +getProjects($projectId): \Upsun\Model\Project +``` + +Get a project + +Retrieve the details of a single project. + +### Example + +```php +getProjects($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectApi->getProjects: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Project**](../Model/Project.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsCapabilities()` + +```php +getProjectsCapabilities($projectId): \Upsun\Model\ProjectCapabilities +``` + +Get a project's capabilities + +Get a list of capabilities on a project, as defined by the billing system. For instance, one special capability that could be defined on a project is large development environments. + +### Example + +```php +getProjectsCapabilities($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectApi->getProjectsCapabilities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\ProjectCapabilities**](../Model/ProjectCapabilities.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjects()` + +```php +updateProjects($projectId, $projectPatch): \Upsun\Model\AcceptedResponse +``` + +Update a project + +Update the details of an existing project. + +### Example + +```php +updateProjects($projectId, $projectPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectApi->updateProjects: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectPatch** | [**\Upsun\Model\ProjectPatch**](../Model/ProjectPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProjectInvitationsApi.md b/docs/Api/ProjectInvitationsApi.md new file mode 100644 index 00000000..6cbff2b5 --- /dev/null +++ b/docs/Api/ProjectInvitationsApi.md @@ -0,0 +1,185 @@ +# [Upsun\Api\ProjectInvitationsApi](../src/Api/ProjectInvitationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**cancelProjectInvite()**](ProjectInvitationsApi.md#cancelProjectInvite) | **DELETE** /projects/{project_id}/invitations/{invitation_id} | Cancel a pending invitation to a project | https://docs.upsun.com/api/#tag/Project-Invitations/operation/cancel-project-invite | +| [**createProjectInvite()**](ProjectInvitationsApi.md#createProjectInvite) | **POST** /projects/{project_id}/invitations | Invite user to a project by email | https://docs.upsun.com/api/#tag/Project-Invitations/operation/create-project-invite | +| [**listProjectInvites()**](ProjectInvitationsApi.md#listProjectInvites) | **GET** /projects/{project_id}/invitations | List invitations to a project | https://docs.upsun.com/api/#tag/Project-Invitations/operation/list-project-invites | + + +## `cancelProjectInvite()` + +```php +cancelProjectInvite($projectId, $invitationId) +``` + +Cancel a pending invitation to a project + +Cancels the specified invitation. + +### Example + +```php +cancelProjectInvite($projectId, $invitationId); +} catch (Exception $e) { + echo 'Exception when calling ProjectInvitationsApi->cancelProjectInvite: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **invitationId** | **string**| The ID of the invitation. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createProjectInvite()` + +```php +createProjectInvite($projectId, $createProjectInviteRequest): \Upsun\Model\ProjectInvitation +``` + +Invite user to a project by email + +Creates an invitation to a project for a user with the specified email address. + +### Example + +```php +createProjectInvite($projectId, $createProjectInviteRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectInvitationsApi->createProjectInvite: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **createProjectInviteRequest** | [**\Upsun\Model\CreateProjectInviteRequest**](../Model/CreateProjectInviteRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\ProjectInvitation**](../Model/ProjectInvitation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectInvites()` + +```php +listProjectInvites($projectId, $filterState, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ProjectInvitation[] +``` + +List invitations to a project + +Returns a list of invitations to a project. + +### Example + +```php + Use a dash (\"-\") to sort descending. + +try { + $result = $apiInstance->listProjectInvites($projectId, $filterState, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectInvitationsApi->listProjectInvites: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **filterState** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `state` of the invtations: \"pending\" (default), \"error\". | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending. | [optional] | + +### Return type + +[**\Upsun\Model\ProjectInvitation[]**](../Model/ProjectInvitation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProjectSettingsApi.md b/docs/Api/ProjectSettingsApi.md new file mode 100644 index 00000000..a7494f69 --- /dev/null +++ b/docs/Api/ProjectSettingsApi.md @@ -0,0 +1,119 @@ +# [Upsun\Api\ProjectSettingsApi](../src/Api/ProjectSettingsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectsSettings()**](ProjectSettingsApi.md#getProjectsSettings) | **GET** /projects/{projectId}/settings | Get list of project settings | https://docs.upsun.com/api/#tag/Project-Settings/operation/get-projects-settings | +| [**updateProjectsSettings()**](ProjectSettingsApi.md#updateProjectsSettings) | **PATCH** /projects/{projectId}/settings | Update a project setting | https://docs.upsun.com/api/#tag/Project-Settings/operation/update-projects-settings | + + +## `getProjectsSettings()` + +```php +getProjectsSettings($projectId): \Upsun\Model\ProjectSettings +``` + +Get list of project settings + +Retrieve the global settings for a project. + +### Example + +```php +getProjectsSettings($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectSettingsApi->getProjectsSettings: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\ProjectSettings**](../Model/ProjectSettings.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsSettings()` + +```php +updateProjectsSettings($projectId, $projectSettingsPatch): \Upsun\Model\AcceptedResponse +``` + +Update a project setting + +Update one or more project-level settings. + +### Example + +```php +updateProjectsSettings($projectId, $projectSettingsPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectSettingsApi->updateProjectsSettings: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectSettingsPatch** | [**\Upsun\Model\ProjectSettingsPatch**](../Model/ProjectSettingsPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ProjectVariablesApi.md b/docs/Api/ProjectVariablesApi.md new file mode 100644 index 00000000..0c894da6 --- /dev/null +++ b/docs/Api/ProjectVariablesApi.md @@ -0,0 +1,292 @@ +# [Upsun\Api\ProjectVariablesApi](../src/Api/ProjectVariablesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsVariables()**](ProjectVariablesApi.md#createProjectsVariables) | **POST** /projects/{projectId}/variables | Add a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/create-projects-variables | +| [**deleteProjectsVariables()**](ProjectVariablesApi.md#deleteProjectsVariables) | **DELETE** /projects/{projectId}/variables/{projectVariableId} | Delete a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/delete-projects-variables | +| [**getProjectsVariables()**](ProjectVariablesApi.md#getProjectsVariables) | **GET** /projects/{projectId}/variables/{projectVariableId} | Get a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/get-projects-variables | +| [**listProjectsVariables()**](ProjectVariablesApi.md#listProjectsVariables) | **GET** /projects/{projectId}/variables | Get list of project variables | https://docs.upsun.com/api/#tag/Project-Variables/operation/list-projects-variables | +| [**updateProjectsVariables()**](ProjectVariablesApi.md#updateProjectsVariables) | **PATCH** /projects/{projectId}/variables/{projectVariableId} | Update a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/update-projects-variables | + + +## `createProjectsVariables()` + +```php +createProjectsVariables($projectId, $projectVariableCreateInput): \Upsun\Model\AcceptedResponse +``` + +Add a project variable + +Add a variable to a project. The `value` can be either a string or a JSON object (default: string), as specified by the `is_json` boolean flag. See the [Variables](https://docs.upsun.com/anchors/variables/set/project/create/) section in our documentation for more information. + +### Example + +```php +createProjectsVariables($projectId, $projectVariableCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectVariablesApi->createProjectsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectVariableCreateInput** | [**\Upsun\Model\ProjectVariableCreateInput**](../Model/ProjectVariableCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsVariables()` + +```php +deleteProjectsVariables($projectId, $projectVariableId): \Upsun\Model\AcceptedResponse +``` + +Delete a project variable + +Delete a single user-defined project variable. + +### Example + +```php +deleteProjectsVariables($projectId, $projectVariableId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectVariablesApi->deleteProjectsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectVariableId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsVariables()` + +```php +getProjectsVariables($projectId, $projectVariableId): \Upsun\Model\ProjectVariable +``` + +Get a project variable + +Retrieve a single user-defined project variable. + +### Example + +```php +getProjectsVariables($projectId, $projectVariableId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectVariablesApi->getProjectsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectVariableId** | **string**| | | + +### Return type + +[**\Upsun\Model\ProjectVariable**](../Model/ProjectVariable.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsVariables()` + +```php +listProjectsVariables($projectId): \Upsun\Model\ProjectVariable[] +``` + +Get list of project variables + +Retrieve a list of objects representing the user-defined variables within a project. + +### Example + +```php +listProjectsVariables($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectVariablesApi->listProjectsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\ProjectVariable[]**](../Model/ProjectVariable.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsVariables()` + +```php +updateProjectsVariables($projectId, $projectVariableId, $projectVariablePatch): \Upsun\Model\AcceptedResponse +``` + +Update a project variable + +Update a single user-defined project variable. The `value` can be either a string or a JSON object (default: string), as specified by the `is_json` boolean flag. See the [Variables](https://docs.upsun.com/anchors/variables/set/project/create/) section in our documentation for more information. + +### Example + +```php +updateProjectsVariables($projectId, $projectVariableId, $projectVariablePatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ProjectVariablesApi->updateProjectsVariables: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **projectVariableId** | **string**| | | +| **projectVariablePatch** | [**\Upsun\Model\ProjectVariablePatch**](../Model/ProjectVariablePatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/RecordsApi.md b/docs/Api/RecordsApi.md new file mode 100644 index 00000000..517d9586 --- /dev/null +++ b/docs/Api/RecordsApi.md @@ -0,0 +1,143 @@ +# [Upsun\Api\RecordsApi](../src/Api/RecordsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**listOrgPlanRecords()**](RecordsApi.md#listOrgPlanRecords) | **GET** /organizations/{organization_id}/records/plan | List plan records | https://docs.upsun.com/api/#tag/Records/operation/list-org-plan-records | +| [**listOrgUsageRecords()**](RecordsApi.md#listOrgUsageRecords) | **GET** /organizations/{organization_id}/records/usage | List usage records | https://docs.upsun.com/api/#tag/Records/operation/list-org-usage-records | + + +## `listOrgPlanRecords()` + +```php +listOrgPlanRecords($organizationId, $filterSubscriptionId, $filterPlan, $filterStatus, $filterStart, $filterEnd, $filterStartedAt, $filterEndedAt, $page): \Upsun\Model\ListOrgPlanRecords200Response +``` + +List plan records + +Retrieves plan records for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$filterSubscriptionId = 'filterSubscriptionId_example'; // string | The ID of the subscription +$filterPlan = 'filterPlan_example'; // string | The plan type of the subscription. +$filterStatus = 'filterStatus_example'; // string | The status of the plan record. +$filterStart = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The start of the observation period for the record. E.g. filter[start]=2018-01-01 will display all records that were active (i.e. did not end) on 2018-01-01 +$filterEnd = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The end of the observation period for the record. E.g. filter[end]=2018-01-01 will display all records that were active on (i.e. they started before) 2018-01-01 +$filterStartedAt = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The record's start timestamp. You can use this filter to list records started after, or before a certain time. E.g. filter[started_at][value]=2020-01-01&filter[started_at][operator]=> +$filterEndedAt = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The record's end timestamp. You can use this filter to list records ended after, or before a certain time. E.g. filter[ended_at][value]=2020-01-01&filter[ended_at][operator]=> +$page = 56; // int | Page to be displayed. Defaults to 1. + +try { + $result = $apiInstance->listOrgPlanRecords($organizationId, $filterSubscriptionId, $filterPlan, $filterStatus, $filterStart, $filterEnd, $filterStartedAt, $filterEndedAt, $page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RecordsApi->listOrgPlanRecords: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **filterSubscriptionId** | **string**| The ID of the subscription | [optional] | +| **filterPlan** | **string**| The plan type of the subscription. | [optional] | +| **filterStatus** | **string**| The status of the plan record. | [optional] | +| **filterStart** | **\DateTime**| The start of the observation period for the record. E.g. filter[start]=2018-01-01 will display all records that were active (i.e. did not end) on 2018-01-01 | [optional] | +| **filterEnd** | **\DateTime**| The end of the observation period for the record. E.g. filter[end]=2018-01-01 will display all records that were active on (i.e. they started before) 2018-01-01 | [optional] | +| **filterStartedAt** | **\DateTime**| The record's start timestamp. You can use this filter to list records started after, or before a certain time. E.g. filter[started_at][value]=2020-01-01&filter[started_at][operator]=> | [optional] | +| **filterEndedAt** | **\DateTime**| The record's end timestamp. You can use this filter to list records ended after, or before a certain time. E.g. filter[ended_at][value]=2020-01-01&filter[ended_at][operator]=> | [optional] | +| **page** | **int**| Page to be displayed. Defaults to 1. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgPlanRecords200Response**](../Model/ListOrgPlanRecords200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgUsageRecords()` + +```php +listOrgUsageRecords($organizationId, $filterSubscriptionId, $filterUsageGroup, $filterStart, $filterStartedAt, $page): \Upsun\Model\ListOrgUsageRecords200Response +``` + +List usage records + +Retrieves usage records for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$filterSubscriptionId = 'filterSubscriptionId_example'; // string | The ID of the subscription +$filterUsageGroup = 'filterUsageGroup_example'; // string | Filter records by the type of usage. +$filterStart = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The start of the observation period for the record. E.g. filter[start]=2018-01-01 will display all records that were active (i.e. did not end) on 2018-01-01 +$filterStartedAt = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The record's start timestamp. You can use this filter to list records started after, or before a certain time. E.g. filter[started_at][value]=2020-01-01&filter[started_at][operator]=> +$page = 56; // int | Page to be displayed. Defaults to 1. + +try { + $result = $apiInstance->listOrgUsageRecords($organizationId, $filterSubscriptionId, $filterUsageGroup, $filterStart, $filterStartedAt, $page); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RecordsApi->listOrgUsageRecords: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **filterSubscriptionId** | **string**| The ID of the subscription | [optional] | +| **filterUsageGroup** | **string**| Filter records by the type of usage. | [optional] | +| **filterStart** | **\DateTime**| The start of the observation period for the record. E.g. filter[start]=2018-01-01 will display all records that were active (i.e. did not end) on 2018-01-01 | [optional] | +| **filterStartedAt** | **\DateTime**| The record's start timestamp. You can use this filter to list records started after, or before a certain time. E.g. filter[started_at][value]=2020-01-01&filter[started_at][operator]=> | [optional] | +| **page** | **int**| Page to be displayed. Defaults to 1. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgUsageRecords200Response**](../Model/ListOrgUsageRecords200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ReferencesApi.md b/docs/Api/ReferencesApi.md new file mode 100644 index 00000000..a09b1c50 --- /dev/null +++ b/docs/Api/ReferencesApi.md @@ -0,0 +1,292 @@ +# [Upsun\Api\ReferencesApi](../src/Api/ReferencesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**listReferencedOrgs()**](ReferencesApi.md#listReferencedOrgs) | **GET** /ref/organizations | List referenced organizations | https://docs.upsun.com/api/#tag/References/operation/list-referenced-orgs | +| [**listReferencedProjects()**](ReferencesApi.md#listReferencedProjects) | **GET** /ref/projects | List referenced projects | https://docs.upsun.com/api/#tag/References/operation/list-referenced-projects | +| [**listReferencedRegions()**](ReferencesApi.md#listReferencedRegions) | **GET** /ref/regions | List referenced regions | https://docs.upsun.com/api/#tag/References/operation/list-referenced-regions | +| [**listReferencedTeams()**](ReferencesApi.md#listReferencedTeams) | **GET** /ref/teams | List referenced teams | https://docs.upsun.com/api/#tag/References/operation/list-referenced-teams | +| [**listReferencedUsers()**](ReferencesApi.md#listReferencedUsers) | **GET** /ref/users | List referenced users | https://docs.upsun.com/api/#tag/References/operation/list-referenced-users | + + +## `listReferencedOrgs()` + +```php +listReferencedOrgs($in, $sig): array +``` + +List referenced organizations + +Retrieves a list of organizations referenced by a trusted service. Clients cannot construct the URL themselves. The correct URL will be provided in the HAL links of another API response, in the _links object with a key like ref:organizations:0. + +### Example + +```php +listReferencedOrgs($in, $sig); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ReferencesApi->listReferencedOrgs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **in** | **string**| The list of comma-separated organization IDs generated by a trusted service. | | +| **sig** | **string**| The signature of this request generated by a trusted service. | | + +### Return type + +[**array**](../Model/OrganizationReference.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listReferencedProjects()` + +```php +listReferencedProjects($in, $sig): array +``` + +List referenced projects + +Retrieves a list of projects referenced by a trusted service. Clients cannot construct the URL themselves. The correct URL will be provided in the HAL links of another API response, in the _links object with a key like ref:projects:0. + +### Example + +```php +listReferencedProjects($in, $sig); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ReferencesApi->listReferencedProjects: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **in** | **string**| The list of comma-separated project IDs generated by a trusted service. | | +| **sig** | **string**| The signature of this request generated by a trusted service. | | + +### Return type + +[**array**](../Model/ProjectReference.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listReferencedRegions()` + +```php +listReferencedRegions($in, $sig): array +``` + +List referenced regions + +Retrieves a list of regions referenced by a trusted service. Clients cannot construct the URL themselves. The correct URL will be provided in the HAL links of another API response, in the _links object with a key like ref:regions:0. + +### Example + +```php +listReferencedRegions($in, $sig); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ReferencesApi->listReferencedRegions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **in** | **string**| The list of comma-separated region IDs generated by a trusted service. | | +| **sig** | **string**| The signature of this request generated by a trusted service. | | + +### Return type + +[**array**](../Model/RegionReference.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listReferencedTeams()` + +```php +listReferencedTeams($in, $sig): array +``` + +List referenced teams + +Retrieves a list of teams referenced by a trusted service. Clients cannot construct the URL themselves. The correct URL will be provided in the HAL links of another API response, in the _links object with a key like ref:teams:0. + +### Example + +```php +listReferencedTeams($in, $sig); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ReferencesApi->listReferencedTeams: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **in** | **string**| The list of comma-separated team IDs generated by a trusted service. | | +| **sig** | **string**| The signature of this request generated by a trusted service. | | + +### Return type + +[**array**](../Model/TeamReference.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listReferencedUsers()` + +```php +listReferencedUsers($in, $sig): array +``` + +List referenced users + +Retrieves a list of users referenced by a trusted service. Clients cannot construct the URL themselves. The correct URL will be provided in the HAL links of another API response, in the _links object with a key like ref:users:0. + +### Example + +```php +listReferencedUsers($in, $sig); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ReferencesApi->listReferencedUsers: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **in** | **string**| The list of comma-separated user IDs generated by a trusted service. | | +| **sig** | **string**| The signature of this request generated by a trusted service. | | + +### Return type + +[**array**](../Model/UserReference.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/RegionsApi.md b/docs/Api/RegionsApi.md new file mode 100644 index 00000000..0702793d --- /dev/null +++ b/docs/Api/RegionsApi.md @@ -0,0 +1,129 @@ +# [Upsun\Api\RegionsApi](../src/Api/RegionsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getRegion()**](RegionsApi.md#getRegion) | **GET** /regions/{region_id} | Get region | https://docs.upsun.com/api/#tag/Regions/operation/get-region | +| [**listRegions()**](RegionsApi.md#listRegions) | **GET** /regions | List regions | https://docs.upsun.com/api/#tag/Regions/operation/list-regions | + + +## `getRegion()` + +```php +getRegion($regionId): \Upsun\Model\Region +``` + +Get region + +Retrieves the specified region. + +### Example + +```php +getRegion($regionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RegionsApi->getRegion: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **regionId** | **string**| The ID of the region. | | + +### Return type + +[**\Upsun\Model\Region**](../Model/Region.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listRegions()` + +```php +listRegions($filterAvailable, $filterPrivate, $filterZone, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListRegions200Response +``` + +List regions + +Retrieves a list of available regions. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `id`, `created_at`, `updated_at`. + +try { + $result = $apiInstance->listRegions($filterAvailable, $filterPrivate, $filterZone, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RegionsApi->listRegions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **filterAvailable** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `available` using one or more operators. | [optional] | +| **filterPrivate** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `private` using one or more operators. | [optional] | +| **filterZone** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `zone` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `id`, `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListRegions200Response**](../Model/ListRegions200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/RepositoryApi.md b/docs/Api/RepositoryApi.md new file mode 100644 index 00000000..e3861e45 --- /dev/null +++ b/docs/Api/RepositoryApi.md @@ -0,0 +1,290 @@ +# [Upsun\Api\RepositoryApi](../src/Api/RepositoryApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectsGitBlobs()**](RepositoryApi.md#getProjectsGitBlobs) | **GET** /projects/{projectId}/git/blobs/{repositoryBlobId} | Get a blob object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-blobs | +| [**getProjectsGitCommits()**](RepositoryApi.md#getProjectsGitCommits) | **GET** /projects/{projectId}/git/commits/{repositoryCommitId} | Get a commit object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-commits | +| [**getProjectsGitRefs()**](RepositoryApi.md#getProjectsGitRefs) | **GET** /projects/{projectId}/git/refs/{repositoryRefId} | Get a ref object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-refs | +| [**getProjectsGitTrees()**](RepositoryApi.md#getProjectsGitTrees) | **GET** /projects/{projectId}/git/trees/{repositoryTreeId} | Get a tree object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-trees | +| [**listProjectsGitRefs()**](RepositoryApi.md#listProjectsGitRefs) | **GET** /projects/{projectId}/git/refs | Get list of repository refs | https://docs.upsun.com/api/#tag/Repository/operation/list-projects-git-refs | + + +## `getProjectsGitBlobs()` + +```php +getProjectsGitBlobs($projectId, $repositoryBlobId): \Upsun\Model\Blob +``` + +Get a blob object + +Retrieve, by hash, an object representing a blob in the repository backing a project. This endpoint allows direct read-only access to the contents of files in a repo. It returns the file in the `content` field of the response object, encoded according to the format in the `encoding` field, e.g. `base64`. + +### Example + +```php +getProjectsGitBlobs($projectId, $repositoryBlobId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RepositoryApi->getProjectsGitBlobs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **repositoryBlobId** | **string**| | | + +### Return type + +[**\Upsun\Model\Blob**](../Model/Blob.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsGitCommits()` + +```php +getProjectsGitCommits($projectId, $repositoryCommitId): \Upsun\Model\Commit +``` + +Get a commit object + +Retrieve, by hash, an object representing a commit in the repository backing a project. This endpoint functions similarly to `git cat-file -p `. The returned object contains the hash of the Git tree that it belongs to, as well as the ID of parent commits. The commit represented by a parent ID can be retrieved using this endpoint, while the tree state represented by this commit can be retrieved using the [Get a tree object](#tag/Git-Repo%2Fpaths%2F~1projects~1%7BprojectId%7D~1git~1trees~1%7BrepositoryTreeId%7D%2Fget) endpoint. + +### Example + +```php +getProjectsGitCommits($projectId, $repositoryCommitId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RepositoryApi->getProjectsGitCommits: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **repositoryCommitId** | **string**| | | + +### Return type + +[**\Upsun\Model\Commit**](../Model/Commit.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsGitRefs()` + +```php +getProjectsGitRefs($projectId, $repositoryRefId): \Upsun\Model\Ref +``` + +Get a ref object + +Retrieve the details of a single `refs` object in the repository backing a project. This endpoint functions similarly to `git show-ref `, although the pattern must be a full ref `id`, rather than a matching pattern. *NOTE: The `{repositoryRefId}` must be properly escaped.* That is, the ref `refs/heads/master` is accessible via `/projects/{projectId}/git/refs/heads%2Fmaster`. + +### Example + +```php +getProjectsGitRefs($projectId, $repositoryRefId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RepositoryApi->getProjectsGitRefs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **repositoryRefId** | **string**| | | + +### Return type + +[**\Upsun\Model\Ref**](../Model/Ref.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsGitTrees()` + +```php +getProjectsGitTrees($projectId, $repositoryTreeId): \Upsun\Model\Tree +``` + +Get a tree object + +Retrieve, by hash, the tree state represented by a commit. The returned object's `tree` field contains a list of files and directories present in the tree. Directories in the tree can be recursively retrieved by this endpoint through their hashes. Files in the tree can be retrieved by the [Get a blob object](#tag/Git-Repo%2Fpaths%2F~1projects~1%7BprojectId%7D~1git~1blobs~1%7BrepositoryBlobId%7D%2Fget) endpoint. + +### Example + +```php +getProjectsGitTrees($projectId, $repositoryTreeId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RepositoryApi->getProjectsGitTrees: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **repositoryTreeId** | **string**| | | + +### Return type + +[**\Upsun\Model\Tree**](../Model/Tree.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsGitRefs()` + +```php +listProjectsGitRefs($projectId): \Upsun\Model\Ref[] +``` + +Get list of repository refs + +Retrieve a list of `refs/_*` in the repository backing a project. This endpoint functions similarly to `git show-ref`, with each returned object containing a `ref` field with the ref's name, and an object containing the associated commit ID. The returned commit ID can be used with the [Get a commit object](#tag/Git-Repo%2Fpaths%2F~1projects~1%7BprojectId%7D~1git~1commits~1%7BrepositoryCommitId%7D%2Fget) endpoint to retrieve information about that specific commit. + +### Example + +```php +listProjectsGitRefs($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RepositoryApi->listProjectsGitRefs: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Ref[]**](../Model/Ref.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/RoutingApi.md b/docs/Api/RoutingApi.md new file mode 100644 index 00000000..e5d035f7 --- /dev/null +++ b/docs/Api/RoutingApi.md @@ -0,0 +1,123 @@ +# [Upsun\Api\RoutingApi](../src/Api/RoutingApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectsEnvironmentsRoutes()**](RoutingApi.md#getProjectsEnvironmentsRoutes) | **GET** /projects/{projectId}/environments/{environmentId}/routes/{routeId} | Get a route's info | https://docs.upsun.com/api/#tag/Routing/operation/get-projects-environments-routes | +| [**listProjectsEnvironmentsRoutes()**](RoutingApi.md#listProjectsEnvironmentsRoutes) | **GET** /projects/{projectId}/environments/{environmentId}/routes | Get list of routes | https://docs.upsun.com/api/#tag/Routing/operation/list-projects-environments-routes | + + +## `getProjectsEnvironmentsRoutes()` + +```php +getProjectsEnvironmentsRoutes($projectId, $environmentId, $routeId): \Upsun\Model\Route +``` + +Get a route's info + +Get details of a route from an environment using the `id` of the entry retrieved by the [Get environment routes list](#tag/Environment-Routes%2Fpaths%2F~1projects~1%7BprojectId%7D~1environments~1%7BenvironmentId%7D~1routes%2Fget) endpoint. + +### Example + +```php +getProjectsEnvironmentsRoutes($projectId, $environmentId, $routeId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RoutingApi->getProjectsEnvironmentsRoutes: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **routeId** | **string**| | | + +### Return type + +[**\Upsun\Model\Route**](../Model/Route.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsEnvironmentsRoutes()` + +```php +listProjectsEnvironmentsRoutes($projectId, $environmentId): \Upsun\Model\Route[] +``` + +Get list of routes + +Retrieve a list of objects containing route definitions for a specific environment. The definitions returned by this endpoint are those present in an environment's `.upsun/config.yaml` file. + +### Example + +```php +listProjectsEnvironmentsRoutes($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RoutingApi->listProjectsEnvironmentsRoutes: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\Route[]**](../Model/Route.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/RuntimeOperationsApi.md b/docs/Api/RuntimeOperationsApi.md new file mode 100644 index 00000000..a1d8e7a5 --- /dev/null +++ b/docs/Api/RuntimeOperationsApi.md @@ -0,0 +1,68 @@ +# [Upsun\Api\RuntimeOperationsApi](../src/Api/RuntimeOperationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**runOperation()**](RuntimeOperationsApi.md#runOperation) | **POST** /projects/{projectId}/environments/{environmentId}/deployments/{deploymentId}/operations | Execute a runtime operation | https://docs.upsun.com/api/#tag/Runtime-Operations/operation/run-operation | + + +## `runOperation()` + +```php +runOperation($projectId, $environmentId, $deploymentId, $environmentOperationInput): \Upsun\Model\AcceptedResponse +``` + +Execute a runtime operation + +Execute a runtime operation on a currently deployed environment. This allows you to run one-off commands, such as rebuilding static assets on demand, by defining an `operations` key in a project's `.upsun/config.yaml` configuration. More information on runtime operations is [available in our user documentation](https://docs.upsun.com/anchors/app/runtime-operations/). + +### Example + +```php +runOperation($projectId, $environmentId, $deploymentId, $environmentOperationInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling RuntimeOperationsApi->runOperation: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **deploymentId** | **string**| | | +| **environmentOperationInput** | [**\Upsun\Model\EnvironmentOperationInput**](../Model/EnvironmentOperationInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/SourceOperationsApi.md b/docs/Api/SourceOperationsApi.md new file mode 100644 index 00000000..8650a7f4 --- /dev/null +++ b/docs/Api/SourceOperationsApi.md @@ -0,0 +1,123 @@ +# [Upsun\Api\SourceOperationsApi](../src/Api/SourceOperationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**listProjectsEnvironmentsSourceOperations()**](SourceOperationsApi.md#listProjectsEnvironmentsSourceOperations) | **GET** /projects/{projectId}/environments/{environmentId}/source-operations | List source operations | https://docs.upsun.com/api/#tag/Source-Operations/operation/list-projects-environments-source-operations | +| [**runSourceOperation()**](SourceOperationsApi.md#runSourceOperation) | **POST** /projects/{projectId}/environments/{environmentId}/source-operation | Trigger a source operation | https://docs.upsun.com/api/#tag/Source-Operations/operation/run-source-operation | + + +## `listProjectsEnvironmentsSourceOperations()` + +```php +listProjectsEnvironmentsSourceOperations($projectId, $environmentId): \Upsun\Model\EnvironmentSourceOperation[] +``` + +List source operations + +Lists all the source operations, defined in `.upsun/config.yaml`, that are available in an environment. More information on source code operations is [available in our user documentation](https://docs.upsun.com/anchors/app/reference/source/operations/). + +### Example + +```php +listProjectsEnvironmentsSourceOperations($projectId, $environmentId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SourceOperationsApi->listProjectsEnvironmentsSourceOperations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | + +### Return type + +[**\Upsun\Model\EnvironmentSourceOperation[]**](../Model/EnvironmentSourceOperation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `runSourceOperation()` + +```php +runSourceOperation($projectId, $environmentId, $environmentSourceOperationInput): \Upsun\Model\AcceptedResponse +``` + +Trigger a source operation + +This endpoint triggers a source code operation as defined in the `source.operations` key in a project's `.upsun/config.yaml` configuration. More information on source code operations is [available in our user documentation](https://docs.upsun.com/anchors/app/reference/source/operations/). + +### Example + +```php +runSourceOperation($projectId, $environmentId, $environmentSourceOperationInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SourceOperationsApi->runSourceOperation: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **environmentId** | **string**| | | +| **environmentSourceOperationInput** | [**\Upsun\Model\EnvironmentSourceOperationInput**](../Model/EnvironmentSourceOperationInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/SshKeysApi.md b/docs/Api/SshKeysApi.md new file mode 100644 index 00000000..3da6b936 --- /dev/null +++ b/docs/Api/SshKeysApi.md @@ -0,0 +1,165 @@ +# [Upsun\Api\SshKeysApi](../src/Api/SshKeysApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createSshKey()**](SshKeysApi.md#createSshKey) | **POST** /ssh_keys | Add a new public SSH key to a user | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/create-ssh-key | +| [**deleteSshKey()**](SshKeysApi.md#deleteSshKey) | **DELETE** /ssh_keys/{key_id} | Delete an SSH key | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/delete-ssh-key | +| [**getSshKey()**](SshKeysApi.md#getSshKey) | **GET** /ssh_keys/{key_id} | Get an SSH key | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/get-ssh-key | + + +## `createSshKey()` + +```php +createSshKey($createSshKeyRequest): \Upsun\Model\SshKey +``` + +Add a new public SSH key to a user + +### Example + +```php +createSshKey($createSshKeyRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SshKeysApi->createSshKey: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **createSshKeyRequest** | [**\Upsun\Model\CreateSshKeyRequest**](../Model/CreateSshKeyRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\SshKey**](../Model/SshKey.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteSshKey()` + +```php +deleteSshKey($keyId) +``` + +Delete an SSH key + +### Example + +```php +deleteSshKey($keyId); +} catch (Exception $e) { + echo 'Exception when calling SshKeysApi->deleteSshKey: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **keyId** | **int**| The ID of the ssh key. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: Not defined + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getSshKey()` + +```php +getSshKey($keyId): \Upsun\Model\SshKey +``` + +Get an SSH key + +### Example + +```php +getSshKey($keyId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SshKeysApi->getSshKey: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **keyId** | **int**| The ID of the ssh key. | | + +### Return type + +[**\Upsun\Model\SshKey**](../Model/SshKey.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/SubscriptionsApi.md b/docs/Api/SubscriptionsApi.md new file mode 100644 index 00000000..8acae8fb --- /dev/null +++ b/docs/Api/SubscriptionsApi.md @@ -0,0 +1,783 @@ +# [Upsun\Api\SubscriptionsApi](../src/Api/SubscriptionsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**canCreateNewOrgSubscription()**](SubscriptionsApi.md#canCreateNewOrgSubscription) | **GET** /organizations/{organization_id}/subscriptions/can-create | Checks if the user is able to create a new project. | https://docs.upsun.com/api/#tag/Subscriptions/operation/can-create-new-org-subscription | +| [**canUpdateSubscription()**](SubscriptionsApi.md#canUpdateSubscription) | **GET** /subscriptions/{subscriptionId}/can-update | Checks if the user is able to update a project. | https://docs.upsun.com/api/#tag/Subscriptions/operation/can-update-subscription | +| [**createOrgSubscription()**](SubscriptionsApi.md#createOrgSubscription) | **POST** /organizations/{organization_id}/subscriptions | Create subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/create-org-subscription | +| [**deleteOrgSubscription()**](SubscriptionsApi.md#deleteOrgSubscription) | **DELETE** /organizations/{organization_id}/subscriptions/{subscription_id} | Delete subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/delete-org-subscription | +| [**estimateNewOrgSubscription()**](SubscriptionsApi.md#estimateNewOrgSubscription) | **GET** /organizations/{organization_id}/subscriptions/estimate | Estimate the price of a new subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/estimate-new-org-subscription | +| [**estimateOrgSubscription()**](SubscriptionsApi.md#estimateOrgSubscription) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/estimate | Estimate the price of a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/estimate-org-subscription | +| [**getOrgSubscription()**](SubscriptionsApi.md#getOrgSubscription) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id} | Get subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-org-subscription | +| [**getOrgSubscriptionCurrentUsage()**](SubscriptionsApi.md#getOrgSubscriptionCurrentUsage) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/current_usage | Get current usage for a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-org-subscription-current-usage | +| [**getSubscriptionUsageAlerts()**](SubscriptionsApi.md#getSubscriptionUsageAlerts) | **GET** /organizations/{organization_id}/alerts/subscriptions/{subscription_id}/usage | Get usage alerts | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-subscription-usage-alerts | +| [**listOrgSubscriptions()**](SubscriptionsApi.md#listOrgSubscriptions) | **GET** /organizations/{organization_id}/subscriptions | List subscriptions | https://docs.upsun.com/api/#tag/Subscriptions/operation/list-org-subscriptions | +| [**listSubscriptionAddons()**](SubscriptionsApi.md#listSubscriptionAddons) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/addons | List addons for a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/list-subscription-addons | +| [**updateOrgSubscription()**](SubscriptionsApi.md#updateOrgSubscription) | **PATCH** /organizations/{organization_id}/subscriptions/{subscription_id} | Update subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/update-org-subscription | +| [**updateSubscriptionUsageAlerts()**](SubscriptionsApi.md#updateSubscriptionUsageAlerts) | **PATCH** /organizations/{organization_id}/alerts/subscriptions/{subscription_id}/usage | Update usage alerts. | https://docs.upsun.com/api/#tag/Subscriptions/operation/update-subscription-usage-alerts | + + +## `canCreateNewOrgSubscription()` + +```php +canCreateNewOrgSubscription($organizationId): \Upsun\Model\CanCreateNewOrgSubscription200Response +``` + +Checks if the user is able to create a new project. + +### Example + +```php +canCreateNewOrgSubscription($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->canCreateNewOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | + +### Return type + +[**\Upsun\Model\CanCreateNewOrgSubscription200Response**](../Model/CanCreateNewOrgSubscription200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `canUpdateSubscription()` + +```php +canUpdateSubscription($subscriptionId, $plan, $environments, $storage, $userLicenses): \Upsun\Model\CanUpdateSubscription200Response +``` + +Checks if the user is able to update a project. + +### Example + +```php +canUpdateSubscription($subscriptionId, $plan, $environments, $storage, $userLicenses); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->canUpdateSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **subscriptionId** | **string**| The ID of the subscription | | +| **plan** | **string**| The plan type of the subscription. | [optional] | +| **environments** | **int**| The number of environments which can be provisioned on the project. | [optional] | +| **storage** | **int**| The total storage available to each environment, in MiB. Only multiples of 1024 are accepted as legal values. | [optional] | +| **userLicenses** | **int**| The number of user licenses. | [optional] | + +### Return type + +[**\Upsun\Model\CanUpdateSubscription200Response**](../Model/CanUpdateSubscription200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createOrgSubscription()` + +```php +createOrgSubscription($organizationId, $createOrgSubscriptionRequest): \Upsun\Model\Subscription +``` + +Create subscription + +Creates a subscription for the specified organization. + +### Example + +```php +createOrgSubscription($organizationId, $createOrgSubscriptionRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->createOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **createOrgSubscriptionRequest** | [**\Upsun\Model\CreateOrgSubscriptionRequest**](../Model/CreateOrgSubscriptionRequest.md)| | | + +### Return type + +[**\Upsun\Model\Subscription**](../Model/Subscription.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteOrgSubscription()` + +```php +deleteOrgSubscription($organizationId, $subscriptionId) +``` + +Delete subscription + +Deletes a subscription for the specified organization. + +### Example + +```php +deleteOrgSubscription($organizationId, $subscriptionId); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->deleteOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `estimateNewOrgSubscription()` + +```php +estimateNewOrgSubscription($organizationId, $plan, $environments, $storage, $userLicenses, $format): \Upsun\Model\EstimationObject +``` + +Estimate the price of a new subscription + +### Example + +```php +estimateNewOrgSubscription($organizationId, $plan, $environments, $storage, $userLicenses, $format); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->estimateNewOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **plan** | **string**| The plan type of the subscription. | | +| **environments** | **int**| The maximum number of environments which can be provisioned on the project. | | +| **storage** | **int**| The total storage available to each environment, in MiB. | | +| **userLicenses** | **int**| The number of user licenses. | | +| **format** | **string**| The format of the estimation output. | [optional] | + +### Return type + +[**\Upsun\Model\EstimationObject**](../Model/EstimationObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `estimateOrgSubscription()` + +```php +estimateOrgSubscription($organizationId, $subscriptionId, $plan, $environments, $storage, $userLicenses, $format): \Upsun\Model\EstimationObject +``` + +Estimate the price of a subscription + +### Example + +```php +estimateOrgSubscription($organizationId, $subscriptionId, $plan, $environments, $storage, $userLicenses, $format); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->estimateOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | +| **plan** | **string**| The plan type of the subscription. | | +| **environments** | **int**| The maximum number of environments which can be provisioned on the project. | [optional] | +| **storage** | **int**| The total storage available to each environment, in MiB. | [optional] | +| **userLicenses** | **int**| The number of user licenses. | [optional] | +| **format** | **string**| The format of the estimation output. | [optional] | + +### Return type + +[**\Upsun\Model\EstimationObject**](../Model/EstimationObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgSubscription()` + +```php +getOrgSubscription($organizationId, $subscriptionId): \Upsun\Model\Subscription +``` + +Get subscription + +Retrieves a subscription for the specified organization. + +### Example + +```php +getOrgSubscription($organizationId, $subscriptionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->getOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | + +### Return type + +[**\Upsun\Model\Subscription**](../Model/Subscription.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getOrgSubscriptionCurrentUsage()` + +```php +getOrgSubscriptionCurrentUsage($organizationId, $subscriptionId, $usageGroups, $includeNotCharged): \Upsun\Model\SubscriptionCurrentUsageObject +``` + +Get current usage for a subscription + +### Example + +```php +getOrgSubscriptionCurrentUsage($organizationId, $subscriptionId, $usageGroups, $includeNotCharged); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->getOrgSubscriptionCurrentUsage: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | +| **usageGroups** | **string**| A list of usage groups to retrieve current usage for. | [optional] | +| **includeNotCharged** | **bool**| Whether to include not charged usage groups. | [optional] | + +### Return type + +[**\Upsun\Model\SubscriptionCurrentUsageObject**](../Model/SubscriptionCurrentUsageObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getSubscriptionUsageAlerts()` + +```php +getSubscriptionUsageAlerts($organizationId, $subscriptionId): \Upsun\Model\GetSubscriptionUsageAlerts200Response +``` + +Get usage alerts + +Retrieves current and available usage alerts. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$subscriptionId = 'subscriptionId_example'; // string | The ID of the subscription. + +try { + $result = $apiInstance->getSubscriptionUsageAlerts($organizationId, $subscriptionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->getSubscriptionUsageAlerts: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **subscriptionId** | **string**| The ID of the subscription. | | + +### Return type + +[**\Upsun\Model\GetSubscriptionUsageAlerts200Response**](../Model/GetSubscriptionUsageAlerts200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgSubscriptions()` + +```php +listOrgSubscriptions($organizationId, $filterStatus, $filterId, $filterProjectId, $filterProjectTitle, $filterRegion, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListOrgSubscriptions200Response +``` + +List subscriptions + +Retrieves subscriptions for the specified organization. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `region`, `project_title`, `type`, `plan`, `status`, `created_at`, `updated_at`. + +try { + $result = $apiInstance->listOrgSubscriptions($organizationId, $filterStatus, $filterId, $filterProjectId, $filterProjectTitle, $filterRegion, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->listOrgSubscriptions: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **filterStatus** | **string**| The status of the subscription. | [optional] | +| **filterId** | **string**| Machine name of the region. | [optional] | +| **filterProjectId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `project_id` using one or more operators. | [optional] | +| **filterProjectTitle** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `project_title` using one or more operators. | [optional] | +| **filterRegion** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `region` using one or more operators. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `region`, `project_title`, `type`, `plan`, `status`, `created_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListOrgSubscriptions200Response**](../Model/ListOrgSubscriptions200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listSubscriptionAddons()` + +```php +listSubscriptionAddons($organizationId, $subscriptionId): \Upsun\Model\SubscriptionAddonsObject +``` + +List addons for a subscription + +### Example + +```php +listSubscriptionAddons($organizationId, $subscriptionId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->listSubscriptionAddons: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | + +### Return type + +[**\Upsun\Model\SubscriptionAddonsObject**](../Model/SubscriptionAddonsObject.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateOrgSubscription()` + +```php +updateOrgSubscription($organizationId, $subscriptionId, $updateOrgSubscriptionRequest): \Upsun\Model\Subscription +``` + +Update subscription + +Updates a subscription for the specified organization. + +### Example + +```php +updateOrgSubscription($organizationId, $subscriptionId, $updateOrgSubscriptionRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->updateOrgSubscription: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **subscriptionId** | **string**| The ID of the subscription. | | +| **updateOrgSubscriptionRequest** | [**\Upsun\Model\UpdateOrgSubscriptionRequest**](../Model/UpdateOrgSubscriptionRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Subscription**](../Model/Subscription.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateSubscriptionUsageAlerts()` + +```php +updateSubscriptionUsageAlerts($organizationId, $subscriptionId, $updateSubscriptionUsageAlertsRequest): \Upsun\Model\GetSubscriptionUsageAlerts200Response +``` + +Update usage alerts. + +Updates usage alerts for a subscription. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. +$subscriptionId = 'subscriptionId_example'; // string | The ID of the subscription. +$updateSubscriptionUsageAlertsRequest = new \Upsun\Model\UpdateSubscriptionUsageAlertsRequest(); // \Upsun\Model\UpdateSubscriptionUsageAlertsRequest + +try { + $result = $apiInstance->updateSubscriptionUsageAlerts($organizationId, $subscriptionId, $updateSubscriptionUsageAlertsRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SubscriptionsApi->updateSubscriptionUsageAlerts: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | +| **subscriptionId** | **string**| The ID of the subscription. | | +| **updateSubscriptionUsageAlertsRequest** | [**\Upsun\Model\UpdateSubscriptionUsageAlertsRequest**](../Model/UpdateSubscriptionUsageAlertsRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\GetSubscriptionUsageAlerts200Response**](../Model/GetSubscriptionUsageAlerts200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/SupportApi.md b/docs/Api/SupportApi.md new file mode 100644 index 00000000..1f37f4fa --- /dev/null +++ b/docs/Api/SupportApi.md @@ -0,0 +1,225 @@ +# [Upsun\Api\SupportApi](../src/Api/SupportApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createTicket()**](SupportApi.md#createTicket) | **POST** /tickets | Create a new support ticket | https://docs.upsun.com/api/#tag/Support/operation/create-ticket | +| [**listTicketCategories()**](SupportApi.md#listTicketCategories) | **GET** /tickets/category | List support ticket categories | https://docs.upsun.com/api/#tag/Support/operation/list-ticket-categories | +| [**listTicketPriorities()**](SupportApi.md#listTicketPriorities) | **GET** /tickets/priority | List support ticket priorities | https://docs.upsun.com/api/#tag/Support/operation/list-ticket-priorities | +| [**updateTicket()**](SupportApi.md#updateTicket) | **PATCH** /tickets/{ticket_id} | Update a ticket | https://docs.upsun.com/api/#tag/Support/operation/update-ticket | + + +## `createTicket()` + +```php +createTicket($createTicketRequest): \Upsun\Model\Ticket +``` + +Create a new support ticket + +### Example + +```php +createTicket($createTicketRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SupportApi->createTicket: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **createTicketRequest** | [**\Upsun\Model\CreateTicketRequest**](../Model/CreateTicketRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Ticket**](../Model/Ticket.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listTicketCategories()` + +```php +listTicketCategories($subscriptionId, $organizationId): \Upsun\Model\ListTicketCategories200ResponseInner[] +``` + +List support ticket categories + +### Example + +```php +listTicketCategories($subscriptionId, $organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SupportApi->listTicketCategories: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **subscriptionId** | **string**| The ID of the subscription the ticket should be related to | [optional] | +| **organizationId** | **string**| The ID of the organization the ticket should be related to | [optional] | + +### Return type + +[**\Upsun\Model\ListTicketCategories200ResponseInner[]**](../Model/ListTicketCategories200ResponseInner.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listTicketPriorities()` + +```php +listTicketPriorities($subscriptionId, $category): \Upsun\Model\ListTicketPriorities200ResponseInner[] +``` + +List support ticket priorities + +### Example + +```php +listTicketPriorities($subscriptionId, $category); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SupportApi->listTicketPriorities: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **subscriptionId** | **string**| The ID of the subscription the ticket should be related to | [optional] | +| **category** | **string**| The category of the support ticket. | [optional] | + +### Return type + +[**\Upsun\Model\ListTicketPriorities200ResponseInner[]**](../Model/ListTicketPriorities200ResponseInner.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateTicket()` + +```php +updateTicket($ticketId, $updateTicketRequest): \Upsun\Model\Ticket +``` + +Update a ticket + +### Example + +```php +updateTicket($ticketId, $updateTicketRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SupportApi->updateTicket: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **ticketId** | **string**| The ID of the ticket | | +| **updateTicketRequest** | [**\Upsun\Model\UpdateTicketRequest**](../Model/UpdateTicketRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Ticket**](../Model/Ticket.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/SystemInformationApi.md b/docs/Api/SystemInformationApi.md new file mode 100644 index 00000000..533aa9fa --- /dev/null +++ b/docs/Api/SystemInformationApi.md @@ -0,0 +1,117 @@ +# [Upsun\Api\SystemInformationApi](../src/Api/SystemInformationApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**actionProjectsSystemRestart()**](SystemInformationApi.md#actionProjectsSystemRestart) | **POST** /projects/{projectId}/system/restart | Restart the Git server | https://docs.upsun.com/api/#tag/System-Information/operation/action-projects-system-restart | +| [**getProjectsSystem()**](SystemInformationApi.md#getProjectsSystem) | **GET** /projects/{projectId}/system | Get information about the Git server. | https://docs.upsun.com/api/#tag/System-Information/operation/get-projects-system | + + +## `actionProjectsSystemRestart()` + +```php +actionProjectsSystemRestart($projectId): \Upsun\Model\AcceptedResponse +``` + +Restart the Git server + +Force the Git server to restart. + +### Example + +```php +actionProjectsSystemRestart($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SystemInformationApi->actionProjectsSystemRestart: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsSystem()` + +```php +getProjectsSystem($projectId): \Upsun\Model\SystemInformation +``` + +Get information about the Git server. + +Output information for the project. + +### Example + +```php +getProjectsSystem($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling SystemInformationApi->getProjectsSystem: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\SystemInformation**](../Model/SystemInformation.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/TeamAccessApi.md b/docs/Api/TeamAccessApi.md new file mode 100644 index 00000000..5172eae0 --- /dev/null +++ b/docs/Api/TeamAccessApi.md @@ -0,0 +1,471 @@ +# [Upsun\Api\TeamAccessApi](../src/Api/TeamAccessApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectTeamAccess()**](TeamAccessApi.md#getProjectTeamAccess) | **GET** /projects/{project_id}/team-access/{team_id} | Get team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/get-project-team-access | +| [**getTeamProjectAccess()**](TeamAccessApi.md#getTeamProjectAccess) | **GET** /teams/{team_id}/project-access/{project_id} | Get project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/get-team-project-access | +| [**grantProjectTeamAccess()**](TeamAccessApi.md#grantProjectTeamAccess) | **POST** /projects/{project_id}/team-access | Grant team access to a project | https://docs.upsun.com/api/#tag/Team-Access/operation/grant-project-team-access | +| [**grantTeamProjectAccess()**](TeamAccessApi.md#grantTeamProjectAccess) | **POST** /teams/{team_id}/project-access | Grant project access to a team | https://docs.upsun.com/api/#tag/Team-Access/operation/grant-team-project-access | +| [**listProjectTeamAccess()**](TeamAccessApi.md#listProjectTeamAccess) | **GET** /projects/{project_id}/team-access | List team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/list-project-team-access | +| [**listTeamProjectAccess()**](TeamAccessApi.md#listTeamProjectAccess) | **GET** /teams/{team_id}/project-access | List project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/list-team-project-access | +| [**removeProjectTeamAccess()**](TeamAccessApi.md#removeProjectTeamAccess) | **DELETE** /projects/{project_id}/team-access/{team_id} | Remove team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/remove-project-team-access | +| [**removeTeamProjectAccess()**](TeamAccessApi.md#removeTeamProjectAccess) | **DELETE** /teams/{team_id}/project-access/{project_id} | Remove project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/remove-team-project-access | + + +## `getProjectTeamAccess()` + +```php +getProjectTeamAccess($projectId, $teamId): \Upsun\Model\TeamProjectAccess +``` + +Get team access for a project + +Retrieves the team's permissions for the current project. + +### Example + +```php +getProjectTeamAccess($projectId, $teamId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->getProjectTeamAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **teamId** | **string**| The ID of the team. | | + +### Return type + +[**\Upsun\Model\TeamProjectAccess**](../Model/TeamProjectAccess.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getTeamProjectAccess()` + +```php +getTeamProjectAccess($teamId, $projectId): \Upsun\Model\TeamProjectAccess +``` + +Get project access for a team + +Retrieves the team's permissions for the current project. + +### Example + +```php +getTeamProjectAccess($teamId, $projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->getTeamProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +[**\Upsun\Model\TeamProjectAccess**](../Model/TeamProjectAccess.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `grantProjectTeamAccess()` + +```php +grantProjectTeamAccess($projectId, $grantProjectTeamAccessRequestInner) +``` + +Grant team access to a project + +Grants one or more team access to a specific project. + +### Example + +```php +grantProjectTeamAccess($projectId, $grantProjectTeamAccessRequestInner); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->grantProjectTeamAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **grantProjectTeamAccessRequestInner** | [**\Upsun\Model\GrantProjectTeamAccessRequestInner[]**](../Model/GrantProjectTeamAccessRequestInner.md)| | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `grantTeamProjectAccess()` + +```php +grantTeamProjectAccess($teamId, $grantTeamProjectAccessRequestInner) +``` + +Grant project access to a team + +Adds the team to one or more specified projects. + +### Example + +```php +grantTeamProjectAccess($teamId, $grantTeamProjectAccessRequestInner); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->grantTeamProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **grantTeamProjectAccessRequestInner** | [**\Upsun\Model\GrantTeamProjectAccessRequestInner[]**](../Model/GrantTeamProjectAccessRequestInner.md)| | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectTeamAccess()` + +```php +listProjectTeamAccess($projectId, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListProjectTeamAccess200Response +``` + +List team access for a project + +Returns a list of items representing the project access. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `granted_at`, `updated_at`. + +try { + $result = $apiInstance->listProjectTeamAccess($projectId, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->listProjectTeamAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `granted_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListProjectTeamAccess200Response**](../Model/ListProjectTeamAccess200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listTeamProjectAccess()` + +```php +listTeamProjectAccess($teamId, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListProjectTeamAccess200Response +``` + +List project access for a team + +Returns a list of items representing the team's project access. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `project_title`, `granted_at`, `updated_at`. + +try { + $result = $apiInstance->listTeamProjectAccess($teamId, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->listTeamProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `project_title`, `granted_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListProjectTeamAccess200Response**](../Model/ListProjectTeamAccess200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `removeProjectTeamAccess()` + +```php +removeProjectTeamAccess($projectId, $teamId) +``` + +Remove team access for a project + +Removes the team from the current project. + +### Example + +```php +removeProjectTeamAccess($projectId, $teamId); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->removeProjectTeamAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **teamId** | **string**| The ID of the team. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `removeTeamProjectAccess()` + +```php +removeTeamProjectAccess($teamId, $projectId) +``` + +Remove project access for a team + +Removes the team from the current project. + +### Example + +```php +removeTeamProjectAccess($teamId, $projectId); +} catch (Exception $e) { + echo 'Exception when calling TeamAccessApi->removeTeamProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/TeamsApi.md b/docs/Api/TeamsApi.md new file mode 100644 index 00000000..37f37d11 --- /dev/null +++ b/docs/Api/TeamsApi.md @@ -0,0 +1,593 @@ +# [Upsun\Api\TeamsApi](../src/Api/TeamsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createTeam()**](TeamsApi.md#createTeam) | **POST** /teams | Create team | https://docs.upsun.com/api/#tag/Teams/operation/create-team | +| [**createTeamMember()**](TeamsApi.md#createTeamMember) | **POST** /teams/{team_id}/members | Create team member | https://docs.upsun.com/api/#tag/Teams/operation/create-team-member | +| [**deleteTeam()**](TeamsApi.md#deleteTeam) | **DELETE** /teams/{team_id} | Delete team | https://docs.upsun.com/api/#tag/Teams/operation/delete-team | +| [**deleteTeamMember()**](TeamsApi.md#deleteTeamMember) | **DELETE** /teams/{team_id}/members/{user_id} | Delete team member | https://docs.upsun.com/api/#tag/Teams/operation/delete-team-member | +| [**getTeam()**](TeamsApi.md#getTeam) | **GET** /teams/{team_id} | Get team | https://docs.upsun.com/api/#tag/Teams/operation/get-team | +| [**getTeamMember()**](TeamsApi.md#getTeamMember) | **GET** /teams/{team_id}/members/{user_id} | Get team member | https://docs.upsun.com/api/#tag/Teams/operation/get-team-member | +| [**listTeamMembers()**](TeamsApi.md#listTeamMembers) | **GET** /teams/{team_id}/members | List team members | https://docs.upsun.com/api/#tag/Teams/operation/list-team-members | +| [**listTeams()**](TeamsApi.md#listTeams) | **GET** /teams | List teams | https://docs.upsun.com/api/#tag/Teams/operation/list-teams | +| [**listUserTeams()**](TeamsApi.md#listUserTeams) | **GET** /users/{user_id}/teams | User teams | https://docs.upsun.com/api/#tag/Teams/operation/list-user-teams | +| [**updateTeam()**](TeamsApi.md#updateTeam) | **PATCH** /teams/{team_id} | Update team | https://docs.upsun.com/api/#tag/Teams/operation/update-team | + + +## `createTeam()` + +```php +createTeam($createTeamRequest): \Upsun\Model\Team +``` + +Create team + +Creates a new team. + +### Example + +```php +createTeam($createTeamRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->createTeam: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **createTeamRequest** | [**\Upsun\Model\CreateTeamRequest**](../Model/CreateTeamRequest.md)| | | + +### Return type + +[**\Upsun\Model\Team**](../Model/Team.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `createTeamMember()` + +```php +createTeamMember($teamId, $createTeamMemberRequest): \Upsun\Model\TeamMember +``` + +Create team member + +Creates a new team member. + +### Example + +```php +createTeamMember($teamId, $createTeamMemberRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->createTeamMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **createTeamMemberRequest** | [**\Upsun\Model\CreateTeamMemberRequest**](../Model/CreateTeamMemberRequest.md)| | | + +### Return type + +[**\Upsun\Model\TeamMember**](../Model/TeamMember.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteTeam()` + +```php +deleteTeam($teamId) +``` + +Delete team + +Deletes the specified team. + +### Example + +```php +deleteTeam($teamId); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->deleteTeam: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteTeamMember()` + +```php +deleteTeamMember($teamId, $userId) +``` + +Delete team member + +Deletes the specified team member. + +### Example + +```php +deleteTeamMember($teamId, $userId); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->deleteTeamMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getTeam()` + +```php +getTeam($teamId): \Upsun\Model\Team +``` + +Get team + +Retrieves the specified team. + +### Example + +```php +getTeam($teamId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->getTeam: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | + +### Return type + +[**\Upsun\Model\Team**](../Model/Team.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getTeamMember()` + +```php +getTeamMember($teamId, $userId): \Upsun\Model\TeamMember +``` + +Get team member + +Retrieves the specified team member. + +### Example + +```php +getTeamMember($teamId, $userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->getTeamMember: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\TeamMember**](../Model/TeamMember.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listTeamMembers()` + +```php +listTeamMembers($teamId, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListTeamMembers200Response +``` + +List team members + +Retrieves a list of users associated with a single team. + +### Example + +```php + Use a dash (\"-\") to sort descending. + +try { + $result = $apiInstance->listTeamMembers($teamId, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->listTeamMembers: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending. | [optional] | + +### Return type + +[**\Upsun\Model\ListTeamMembers200Response**](../Model/ListTeamMembers200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listTeams()` + +```php +listTeams($filterOrganizationId, $filterId, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListTeams200Response +``` + +List teams + +Retrieves a list of teams. + +### Example + +```php + Use a dash (\"-\") to sort descending. + +try { + $result = $apiInstance->listTeams($filterOrganizationId, $filterId, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->listTeams: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **filterOrganizationId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `organization_id` using one or more operators. | [optional] | +| **filterId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `id` using one or more operators. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending. | [optional] | + +### Return type + +[**\Upsun\Model\ListTeams200Response**](../Model/ListTeams200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listUserTeams()` + +```php +listUserTeams($userId, $filterOrganizationId, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListTeams200Response +``` + +User teams + +Retrieves teams that the specified user is a member of. + +### Example + +```php + Use a dash (\"-\") to sort descending. + +try { + $result = $apiInstance->listUserTeams($userId, $filterOrganizationId, $filterUpdatedAt, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->listUserTeams: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **filterOrganizationId** | [**\Upsun\Model\StringFilter**](../Model/.md)| Allows filtering by `organization_id` using one or more operators. | [optional] | +| **filterUpdatedAt** | [**\Upsun\Model\DateTimeFilter**](../Model/.md)| Allows filtering by `updated_at` using one or more operators. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending. | [optional] | + +### Return type + +[**\Upsun\Model\ListTeams200Response**](../Model/ListTeams200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateTeam()` + +```php +updateTeam($teamId, $updateTeamRequest): \Upsun\Model\Team +``` + +Update team + +Updates the specified team. + +### Example + +```php +updateTeam($teamId, $updateTeamRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling TeamsApi->updateTeam: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **teamId** | **string**| The ID of the team. | | +| **updateTeamRequest** | [**\Upsun\Model\UpdateTeamRequest**](../Model/UpdateTeamRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Team**](../Model/Team.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/ThirdPartyIntegrationsApi.md b/docs/Api/ThirdPartyIntegrationsApi.md new file mode 100644 index 00000000..66a64a7b --- /dev/null +++ b/docs/Api/ThirdPartyIntegrationsApi.md @@ -0,0 +1,282 @@ +# [Upsun\Api\ThirdPartyIntegrationsApi](../src/Api/ThirdPartyIntegrationsApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProjectsIntegrations()**](ThirdPartyIntegrationsApi.md#createProjectsIntegrations) | **POST** /projects/{projectId}/integrations | Integrate project with a third-party service | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/create-projects-integrations | +| [**deleteProjectsIntegrations()**](ThirdPartyIntegrationsApi.md#deleteProjectsIntegrations) | **DELETE** /projects/{projectId}/integrations/{integrationId} | Delete an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/delete-projects-integrations | +| [**getProjectsIntegrations()**](ThirdPartyIntegrationsApi.md#getProjectsIntegrations) | **GET** /projects/{projectId}/integrations/{integrationId} | Get information about an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/get-projects-integrations | +| [**listProjectsIntegrations()**](ThirdPartyIntegrationsApi.md#listProjectsIntegrations) | **GET** /projects/{projectId}/integrations | Get list of existing integrations for a project | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/list-projects-integrations | +| [**updateProjectsIntegrations()**](ThirdPartyIntegrationsApi.md#updateProjectsIntegrations) | **PATCH** /projects/{projectId}/integrations/{integrationId} | Update an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/update-projects-integrations | + + +## `createProjectsIntegrations()` + +```php +createProjectsIntegrations($projectId, $integrationCreateInput): \Upsun\Model\AcceptedResponse +``` + +Integrate project with a third-party service + +### Example + +```php +createProjectsIntegrations($projectId, $integrationCreateInput); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ThirdPartyIntegrationsApi->createProjectsIntegrations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **integrationCreateInput** | [**\Upsun\Model\IntegrationCreateInput**](../Model/IntegrationCreateInput.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProjectsIntegrations()` + +```php +deleteProjectsIntegrations($projectId, $integrationId): \Upsun\Model\AcceptedResponse +``` + +Delete an existing third-party integration + +### Example + +```php +deleteProjectsIntegrations($projectId, $integrationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ThirdPartyIntegrationsApi->deleteProjectsIntegrations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **integrationId** | **string**| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProjectsIntegrations()` + +```php +getProjectsIntegrations($projectId, $integrationId): \Upsun\Model\Integration +``` + +Get information about an existing third-party integration + +### Example + +```php +getProjectsIntegrations($projectId, $integrationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ThirdPartyIntegrationsApi->getProjectsIntegrations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **integrationId** | **string**| | | + +### Return type + +[**\Upsun\Model\Integration**](../Model/Integration.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectsIntegrations()` + +```php +listProjectsIntegrations($projectId): \Upsun\Model\Integration[] +``` + +Get list of existing integrations for a project + +### Example + +```php +listProjectsIntegrations($projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ThirdPartyIntegrationsApi->listProjectsIntegrations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | + +### Return type + +[**\Upsun\Model\Integration[]**](../Model/Integration.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectsIntegrations()` + +```php +updateProjectsIntegrations($projectId, $integrationId, $integrationPatch): \Upsun\Model\AcceptedResponse +``` + +Update an existing third-party integration + +### Example + +```php +updateProjectsIntegrations($projectId, $integrationId, $integrationPatch); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling ThirdPartyIntegrationsApi->updateProjectsIntegrations: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| | | +| **integrationId** | **string**| | | +| **integrationPatch** | [**\Upsun\Model\IntegrationPatch**](../Model/IntegrationPatch.md)| | | + +### Return type + +[**\Upsun\Model\AcceptedResponse**](../Model/AcceptedResponse.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/UserAccessApi.md b/docs/Api/UserAccessApi.md new file mode 100644 index 00000000..51562bbe --- /dev/null +++ b/docs/Api/UserAccessApi.md @@ -0,0 +1,589 @@ +# [Upsun\Api\UserAccessApi](../src/Api/UserAccessApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getProjectUserAccess()**](UserAccessApi.md#getProjectUserAccess) | **GET** /projects/{project_id}/user-access/{user_id} | Get user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/get-project-user-access | +| [**getUserProjectAccess()**](UserAccessApi.md#getUserProjectAccess) | **GET** /users/{user_id}/project-access/{project_id} | Get project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/get-user-project-access | +| [**grantProjectUserAccess()**](UserAccessApi.md#grantProjectUserAccess) | **POST** /projects/{project_id}/user-access | Grant user access to a project | https://docs.upsun.com/api/#tag/User-Access/operation/grant-project-user-access | +| [**grantUserProjectAccess()**](UserAccessApi.md#grantUserProjectAccess) | **POST** /users/{user_id}/project-access | Grant project access to a user | https://docs.upsun.com/api/#tag/User-Access/operation/grant-user-project-access | +| [**listProjectUserAccess()**](UserAccessApi.md#listProjectUserAccess) | **GET** /projects/{project_id}/user-access | List user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/list-project-user-access | +| [**listUserProjectAccess()**](UserAccessApi.md#listUserProjectAccess) | **GET** /users/{user_id}/project-access | List project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/list-user-project-access | +| [**removeProjectUserAccess()**](UserAccessApi.md#removeProjectUserAccess) | **DELETE** /projects/{project_id}/user-access/{user_id} | Remove user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/remove-project-user-access | +| [**removeUserProjectAccess()**](UserAccessApi.md#removeUserProjectAccess) | **DELETE** /users/{user_id}/project-access/{project_id} | Remove project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/remove-user-project-access | +| [**updateProjectUserAccess()**](UserAccessApi.md#updateProjectUserAccess) | **PATCH** /projects/{project_id}/user-access/{user_id} | Update user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/update-project-user-access | +| [**updateUserProjectAccess()**](UserAccessApi.md#updateUserProjectAccess) | **PATCH** /users/{user_id}/project-access/{project_id} | Update project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/update-user-project-access | + + +## `getProjectUserAccess()` + +```php +getProjectUserAccess($projectId, $userId): \Upsun\Model\UserProjectAccess +``` + +Get user access for a project + +Retrieves the user's permissions for the current project. + +### Example + +```php +getProjectUserAccess($projectId, $userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->getProjectUserAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\UserProjectAccess**](../Model/UserProjectAccess.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getUserProjectAccess()` + +```php +getUserProjectAccess($userId, $projectId): \Upsun\Model\UserProjectAccess +``` + +Get project access for a user + +Retrieves the user's permissions for the current project. + +### Example + +```php +getUserProjectAccess($userId, $projectId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->getUserProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +[**\Upsun\Model\UserProjectAccess**](../Model/UserProjectAccess.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `grantProjectUserAccess()` + +```php +grantProjectUserAccess($projectId, $grantProjectUserAccessRequestInner) +``` + +Grant user access to a project + +Grants one or more users access to a specific project. + +### Example + +```php +grantProjectUserAccess($projectId, $grantProjectUserAccessRequestInner); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->grantProjectUserAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **grantProjectUserAccessRequestInner** | [**\Upsun\Model\GrantProjectUserAccessRequestInner[]**](../Model/GrantProjectUserAccessRequestInner.md)| | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `grantUserProjectAccess()` + +```php +grantUserProjectAccess($userId, $grantUserProjectAccessRequestInner) +``` + +Grant project access to a user + +Adds the user to one or more specified projects. + +### Example + +```php +grantUserProjectAccess($userId, $grantUserProjectAccessRequestInner); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->grantUserProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **grantUserProjectAccessRequestInner** | [**\Upsun\Model\GrantUserProjectAccessRequestInner[]**](../Model/GrantUserProjectAccessRequestInner.md)| | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProjectUserAccess()` + +```php +listProjectUserAccess($projectId, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListProjectUserAccess200Response +``` + +List user access for a project + +Returns a list of items representing the project access. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `granted_at`, `updated_at`. + +try { + $result = $apiInstance->listProjectUserAccess($projectId, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->listProjectUserAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `granted_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListProjectUserAccess200Response**](../Model/ListProjectUserAccess200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listUserProjectAccess()` + +```php +listUserProjectAccess($userId, $filterOrganizationId, $pageSize, $pageBefore, $pageAfter, $sort): \Upsun\Model\ListProjectUserAccess200Response +``` + +List project access for a user + +Returns a list of items representing the user's project access. + +### Example + +```php + Use a dash (\"-\") to sort descending.
Supported fields: `project_title`, `granted_at`, `updated_at`. + +try { + $result = $apiInstance->listUserProjectAccess($userId, $filterOrganizationId, $pageSize, $pageBefore, $pageAfter, $sort); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->listUserProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **filterOrganizationId** | **string**| Allows filtering by `organization_id`. | [optional] | +| **pageSize** | **int**| Determines the number of items to show. | [optional] | +| **pageBefore** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **pageAfter** | **string**| Pagination cursor. This is automatically generated as necessary and provided in HAL links (_links); it should not be constructed externally. | [optional] | +| **sort** | **string**| Allows sorting by a single field.<br> Use a dash (\"-\") to sort descending.<br> Supported fields: `project_title`, `granted_at`, `updated_at`. | [optional] | + +### Return type + +[**\Upsun\Model\ListProjectUserAccess200Response**](../Model/ListProjectUserAccess200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `removeProjectUserAccess()` + +```php +removeProjectUserAccess($projectId, $userId) +``` + +Remove user access for a project + +Removes the user from the current project. + +### Example + +```php +removeProjectUserAccess($projectId, $userId); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->removeProjectUserAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `removeUserProjectAccess()` + +```php +removeUserProjectAccess($userId, $projectId) +``` + +Remove project access for a user + +Removes the user from the current project. + +### Example + +```php +removeUserProjectAccess($userId, $projectId); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->removeUserProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **projectId** | **string**| The ID of the project. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProjectUserAccess()` + +```php +updateProjectUserAccess($projectId, $userId, $updateProjectUserAccessRequest) +``` + +Update user access for a project + +Updates the user's permissions for the current project. + +### Example + +```php +updateProjectUserAccess($projectId, $userId, $updateProjectUserAccessRequest); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->updateProjectUserAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **projectId** | **string**| The ID of the project. | | +| **userId** | **string**| The ID of the user. | | +| **updateProjectUserAccessRequest** | [**\Upsun\Model\UpdateProjectUserAccessRequest**](../Model/UpdateProjectUserAccessRequest.md)| | [optional] | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateUserProjectAccess()` + +```php +updateUserProjectAccess($userId, $projectId, $updateProjectUserAccessRequest) +``` + +Update project access for a user + +Updates the user's permissions for the current project. + +### Example + +```php +updateUserProjectAccess($userId, $projectId, $updateProjectUserAccessRequest); +} catch (Exception $e) { + echo 'Exception when calling UserAccessApi->updateUserProjectAccess: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **projectId** | **string**| The ID of the project. | | +| **updateProjectUserAccessRequest** | [**\Upsun\Model\UpdateProjectUserAccessRequest**](../Model/UpdateProjectUserAccessRequest.md)| | [optional] | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/UserProfilesApi.md b/docs/Api/UserProfilesApi.md new file mode 100644 index 00000000..ec6dec61 --- /dev/null +++ b/docs/Api/UserProfilesApi.md @@ -0,0 +1,384 @@ +# [Upsun\Api\UserProfilesApi](../src/Api/UserProfilesApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**createProfilePicture()**](UserProfilesApi.md#createProfilePicture) | **POST** /profile/{uuid}/picture | Create a user profile picture | https://docs.upsun.com/api/#tag/User-Profiles/operation/create-profile-picture | +| [**deleteProfilePicture()**](UserProfilesApi.md#deleteProfilePicture) | **DELETE** /profile/{uuid}/picture | Delete a user profile picture | https://docs.upsun.com/api/#tag/User-Profiles/operation/delete-profile-picture | +| [**getAddress()**](UserProfilesApi.md#getAddress) | **GET** /profiles/{userId}/address | Get a user address | https://docs.upsun.com/api/#tag/User-Profiles/operation/get-address | +| [**getProfile()**](UserProfilesApi.md#getProfile) | **GET** /profiles/{userId} | Get a single user profile | https://docs.upsun.com/api/#tag/User-Profiles/operation/get-profile | +| [**listProfiles()**](UserProfilesApi.md#listProfiles) | **GET** /profiles | List user profiles | https://docs.upsun.com/api/#tag/User-Profiles/operation/list-profiles | +| [**updateAddress()**](UserProfilesApi.md#updateAddress) | **PATCH** /profiles/{userId}/address | Update a user address | https://docs.upsun.com/api/#tag/User-Profiles/operation/update-address | +| [**updateProfile()**](UserProfilesApi.md#updateProfile) | **PATCH** /profiles/{userId} | Update a user profile | https://docs.upsun.com/api/#tag/User-Profiles/operation/update-profile | + + +## `createProfilePicture()` + +```php +createProfilePicture($uuid, $file): \Upsun\Model\CreateProfilePicture200Response +``` + +Create a user profile picture + +### Example + +```php +createProfilePicture($uuid, $file); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->createProfilePicture: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **uuid** | **string**| The uuid of the user | | +| **file** | **\SplFileObject****\SplFileObject**| The image file to upload. | [optional] | + +### Return type + +[**\Upsun\Model\CreateProfilePicture200Response**](../Model/CreateProfilePicture200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `multipart/form-data` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `deleteProfilePicture()` + +```php +deleteProfilePicture($uuid) +``` + +Delete a user profile picture + +### Example + +```php +deleteProfilePicture($uuid); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->deleteProfilePicture: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **uuid** | **string**| The uuid of the user | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: Not defined + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getAddress()` + +```php +getAddress($userId): \Upsun\Model\GetAddress200Response +``` + +Get a user address + +### Example + +```php +getAddress($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->getAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The UUID of the user | | + +### Return type + +[**\Upsun\Model\GetAddress200Response**](../Model/GetAddress200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getProfile()` + +```php +getProfile($userId): \Upsun\Model\Profile +``` + +Get a single user profile + +### Example + +```php +getProfile($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->getProfile: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The UUID of the user | | + +### Return type + +[**\Upsun\Model\Profile**](../Model/Profile.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listProfiles()` + +```php +listProfiles(): \Upsun\Model\ListProfiles200Response +``` + +List user profiles + +### Example + +```php +listProfiles(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->listProfiles: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\ListProfiles200Response**](../Model/ListProfiles200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateAddress()` + +```php +updateAddress($userId, $address): \Upsun\Model\GetAddress200Response +``` + +Update a user address + +Update a user address, supplying one or more key/value pairs to to change. + +### Example + +```php +updateAddress($userId, $address); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->updateAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The UUID of the user | | +| **address** | [**\Upsun\Model\Address**](../Model/Address.md)| | [optional] | + +### Return type + +[**\Upsun\Model\GetAddress200Response**](../Model/GetAddress200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateProfile()` + +```php +updateProfile($userId, $updateProfileRequest): \Upsun\Model\Profile +``` + +Update a user profile + +Update a user profile, supplying one or more key/value pairs to to change. + +### Example + +```php +updateProfile($userId, $updateProfileRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UserProfilesApi->updateProfile: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The UUID of the user | | +| **updateProfileRequest** | [**\Upsun\Model\UpdateProfileRequest**](../Model/UpdateProfileRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\Profile**](../Model/Profile.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/UsersApi.md b/docs/Api/UsersApi.md new file mode 100644 index 00000000..eec02993 --- /dev/null +++ b/docs/Api/UsersApi.md @@ -0,0 +1,547 @@ +# [Upsun\Api\UsersApi](../src/Api/UsersApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**getCurrentUser()**](UsersApi.md#getCurrentUser) | **GET** /users/me | Get the current user | https://docs.upsun.com/api/#tag/Users/operation/get-current-user | +| [**getCurrentUserDeprecated()**](UsersApi.md#getCurrentUserDeprecated) | **GET** /me | Get current logged-in user info | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-deprecated | +| [**getCurrentUserVerificationStatus()**](UsersApi.md#getCurrentUserVerificationStatus) | **POST** /me/phone | Check if phone verification is required | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-verification-status | +| [**getCurrentUserVerificationStatusFull()**](UsersApi.md#getCurrentUserVerificationStatusFull) | **POST** /me/verification | Check if verification is required | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-verification-status-full | +| [**getUser()**](UsersApi.md#getUser) | **GET** /users/{user_id} | Get a user | https://docs.upsun.com/api/#tag/Users/operation/get-user | +| [**getUserByEmailAddress()**](UsersApi.md#getUserByEmailAddress) | **GET** /users/email={email} | Get a user by email | https://docs.upsun.com/api/#tag/Users/operation/get-user-by-email-address | +| [**getUserByUsername()**](UsersApi.md#getUserByUsername) | **GET** /users/username={username} | Get a user by username | https://docs.upsun.com/api/#tag/Users/operation/get-user-by-username | +| [**resetEmailAddress()**](UsersApi.md#resetEmailAddress) | **POST** /users/{user_id}/emailaddress | Reset email address | https://docs.upsun.com/api/#tag/Users/operation/reset-email-address | +| [**resetPassword()**](UsersApi.md#resetPassword) | **POST** /users/{user_id}/resetpassword | Reset user password | https://docs.upsun.com/api/#tag/Users/operation/reset-password | +| [**updateUser()**](UsersApi.md#updateUser) | **PATCH** /users/{user_id} | Update a user | https://docs.upsun.com/api/#tag/Users/operation/update-user | + + +## `getCurrentUser()` + +```php +getCurrentUser(): \Upsun\Model\User +``` + +Get the current user + +Retrieves the current user, determined from the used access token. + +### Example + +```php +getCurrentUser(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getCurrentUser: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\User**](../Model/User.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getCurrentUserDeprecated()` + +```php +getCurrentUserDeprecated(): \Upsun\Model\CurrentUser +``` + +Get current logged-in user info + +Retrieve information about the currently logged-in user (the user associated with the access token). + +### Example + +```php +getCurrentUserDeprecated(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getCurrentUserDeprecated: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\CurrentUser**](../Model/CurrentUser.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getCurrentUserVerificationStatus()` + +```php +getCurrentUserVerificationStatus(): \Upsun\Model\GetCurrentUserVerificationStatus200Response +``` + +Check if phone verification is required + +Find out if the current logged in user requires phone verification to create projects. + +### Example + +```php +getCurrentUserVerificationStatus(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getCurrentUserVerificationStatus: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\GetCurrentUserVerificationStatus200Response**](../Model/GetCurrentUserVerificationStatus200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getCurrentUserVerificationStatusFull()` + +```php +getCurrentUserVerificationStatusFull(): \Upsun\Model\GetCurrentUserVerificationStatusFull200Response +``` + +Check if verification is required + +Find out if the current logged in user requires verification (phone or staff) to create projects. + +### Example + +```php +getCurrentUserVerificationStatusFull(); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getCurrentUserVerificationStatusFull: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**\Upsun\Model\GetCurrentUserVerificationStatusFull200Response**](../Model/GetCurrentUserVerificationStatusFull200Response.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getUser()` + +```php +getUser($userId): \Upsun\Model\User +``` + +Get a user + +Retrieves the specified user. + +### Example + +```php +getUser($userId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getUser: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +[**\Upsun\Model\User**](../Model/User.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getUserByEmailAddress()` + +```php +getUserByEmailAddress($email): \Upsun\Model\User +``` + +Get a user by email + +Retrieves a user matching the specified email address. + +### Example + +```php +getUserByEmailAddress($email); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getUserByEmailAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **email** | **string**| The user's email address. | | + +### Return type + +[**\Upsun\Model\User**](../Model/User.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `getUserByUsername()` + +```php +getUserByUsername($username): \Upsun\Model\User +``` + +Get a user by username + +Retrieves a user matching the specified username. + +### Example + +```php +getUserByUsername($username); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->getUserByUsername: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **username** | **string**| The user's username. | | + +### Return type + +[**\Upsun\Model\User**](../Model/User.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `resetEmailAddress()` + +```php +resetEmailAddress($userId, $resetEmailAddressRequest) +``` + +Reset email address + +Requests a reset of the user's email address. A confirmation email will be sent to the new address when the request is accepted. + +### Example + +```php +resetEmailAddress($userId, $resetEmailAddressRequest); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->resetEmailAddress: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **resetEmailAddressRequest** | [**\Upsun\Model\ResetEmailAddressRequest**](../Model/ResetEmailAddressRequest.md)| | [optional] | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `resetPassword()` + +```php +resetPassword($userId) +``` + +Reset user password + +Requests a reset of the user's password. A password reset email will be sent to the user when the request is accepted. + +### Example + +```php +resetPassword($userId); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->resetPassword: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `updateUser()` + +```php +updateUser($userId, $updateUserRequest): \Upsun\Model\User +``` + +Update a user + +Updates the specified user. + +### Example + +```php +updateUser($userId, $updateUserRequest); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling UsersApi->updateUser: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **userId** | **string**| The ID of the user. | | +| **updateUserRequest** | [**\Upsun\Model\UpdateUserRequest**](../Model/UpdateUserRequest.md)| | [optional] | + +### Return type + +[**\Upsun\Model\User**](../Model/User.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Api/VouchersApi.md b/docs/Api/VouchersApi.md new file mode 100644 index 00000000..45d03080 --- /dev/null +++ b/docs/Api/VouchersApi.md @@ -0,0 +1,118 @@ +# [Upsun\Api\VouchersApi](../src/Api/VouchersApi.php) + +All URIs are relative to https://api.upsun.com, except if the operation defines another base path. + +| Method | HTTP request | Description | Upsun API Doc | +| ------------- | ------------- | ------------- | ------------- | +| [**applyOrgVoucher()**](VouchersApi.md#applyOrgVoucher) | **POST** /organizations/{organization_id}/vouchers/apply | Apply voucher | https://docs.upsun.com/api/#tag/Vouchers/operation/apply-org-voucher | +| [**listOrgVouchers()**](VouchersApi.md#listOrgVouchers) | **GET** /organizations/{organization_id}/vouchers | List vouchers | https://docs.upsun.com/api/#tag/Vouchers/operation/list-org-vouchers | + + +## `applyOrgVoucher()` + +```php +applyOrgVoucher($organizationId, $applyOrgVoucherRequest) +``` + +Apply voucher + +Applies a voucher for the specified organization, and refreshes the currently open order. + +### Example + +```php +applyOrgVoucher($organizationId, $applyOrgVoucherRequest); +} catch (Exception $e) { + echo 'Exception when calling VouchersApi->applyOrgVoucher: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization. | | +| **applyOrgVoucherRequest** | [**\Upsun\Model\ApplyOrgVoucherRequest**](../Model/ApplyOrgVoucherRequest.md)| | | + +### Return type + +void (empty response body) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: `application/json` +- **Accept**: `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) + +## `listOrgVouchers()` + +```php +listOrgVouchers($organizationId): \Upsun\Model\Vouchers +``` + +List vouchers + +Retrieves vouchers for the specified organization. + +### Example + +```php + Prefix with name= to retrieve the organization by name instead. + +try { + $result = $apiInstance->listOrgVouchers($organizationId); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling VouchersApi->listOrgVouchers: ', $e->getMessage(), PHP_EOL; +} +``` + +### Parameters + +| Name | Type | Description | Notes | +| ------------- | ------------- | ------------- | ------------- | +| **organizationId** | **string**| The ID of the organization.<br> Prefix with name= to retrieve the organization by name instead. | | + +### Return type + +[**\Upsun\Model\Vouchers**](../Model/Vouchers.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: `application/json`, `application/problem+json` + +[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) +[[Back to Model list]](../../README.md#models) +[[Back to README]](../../README.md) diff --git a/docs/Home.md b/docs/Home.md index 44034684..8d6e085e 100644 --- a/docs/Home.md +++ b/docs/Home.md @@ -6,10 +6,12 @@ #### Classes -| Class | Description | -|-------------------------------------------------|----------------------------------------| -| [`UpsunClient`](./classes/Upsun/UpsunClient.md) | Upsun Client to interact with the API. | -| [`UpsunConfig`](./classes/Upsun/UpsunConfig.md) | Upsun Configuration class. | +| Class | Description | +|-------------------------------------------------------------|----------------------------------------| +| [`DebugPlugin`](./classes/Upsun/DebugPlugin.md) | DebugPlugin Class Doc | +| [`FormDataProcessor`](./classes/Upsun/FormDataProcessor.md) | FormDataProcessor Class Doc Comment | +| [`UpsunClient`](./classes/Upsun/UpsunClient.md) | Upsun Client to interact with the API. | +| [`UpsunConfig`](./classes/Upsun/UpsunConfig.md) | Upsun Configuration class. | ### \Upsun\Api @@ -20,7 +22,9 @@ | [`AbstractApi`](./classes/Upsun/Api/AbstractApi.md) | AbstractApi | | [`AddOnsApi`](./classes/Upsun/Api/AddOnsApi.md) | Low level AddOnsApi (auto-generated) | | [`AlertsApi`](./classes/Upsun/Api/AlertsApi.md) | Low level AlertsApi (auto-generated) | +| [`ApiConfiguration`](./classes/Upsun/Api/ApiConfiguration.md) | APIConfiguration holder for the Upsun API Client. | | [`ApiException`](./classes/Upsun/Api/ApiException.md) | Low level (auto-generated) | +| [`ApiHeaderSelector`](./classes/Upsun/Api/ApiHeaderSelector.md) | HeaderSelector Class Doc Comment | | [`ApiTokensApi`](./classes/Upsun/Api/ApiTokensApi.md) | Low level ApiTokensApi (auto-generated) | | [`AutoscalingApi`](./classes/Upsun/Api/AutoscalingApi.md) | Low level AutoscalingApi (auto-generated) | | [`CertificateProvisionerApi`](./classes/Upsun/Api/CertificateProvisionerApi.md) | Low level CertificateProvisionerApi (auto-generated) | @@ -71,6 +75,17 @@ | [`UsersApi`](./classes/Upsun/Api/UsersApi.md) | Low level UsersApi (auto-generated) | | [`VouchersApi`](./classes/Upsun/Api/VouchersApi.md) | Low level VouchersApi (auto-generated) | +### \Upsun\Api\Serializer + +#### Classes + +| Class | Description | +|--------------------------------------------------------------------------------------------|------------------------------------| +| [`ApiObjectAttributesMapper`](./classes/Upsun/Api/Serializer/ApiObjectAttributesMapper.md) | Low level (auto-generated) | +| [`ApiObjectFormatsMapper`](./classes/Upsun/Api/Serializer/ApiObjectFormatsMapper.md) | Low level (auto-generated) | +| [`ApiObjectTypesMapper`](./classes/Upsun/Api/Serializer/ApiObjectTypesMapper.md) | Low level (auto-generated) | +| [`ObjectSerializer`](./classes/Upsun/Api/Serializer/ObjectSerializer.md) | ObjectSerializer Class Doc Comment | + ### \Upsun\Core #### Classes diff --git a/docs/Model/AcceptedResponse.md b/docs/Model/AcceptedResponse.md new file mode 100644 index 00000000..c592c32f --- /dev/null +++ b/docs/Model/AcceptedResponse.md @@ -0,0 +1,10 @@ +# # AcceptedResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status** | **string** | The status text of the response | +**code** | **int** | The status code of the response | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AccessControlInner.md b/docs/Model/AccessControlInner.md new file mode 100644 index 00000000..9e339472 --- /dev/null +++ b/docs/Model/AccessControlInner.md @@ -0,0 +1,10 @@ +# # AccessControlInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**entityId** | **string** | | +**role** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Activity.md b/docs/Model/Activity.md new file mode 100644 index 00000000..6710a62f --- /dev/null +++ b/docs/Model/Activity.md @@ -0,0 +1,29 @@ +# # Activity + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Activity | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | The type of the activity | +**parameters** | **object** | The parameters of the activity | +**project** | **string** | The project the activity belongs to | +**state** | **string** | The state of the activity | +**result** | **string** | The result of the activity | +**startedAt** | **\DateTime** | The start date of the activity | +**completedAt** | **\DateTime** | The completion date of the activity | +**completionPercent** | **int** | The completion percentage of the activity | +**cancelledAt** | **\DateTime** | The Cancellation date of the activity | +**timings** | **array** | Timings related to different phases of the activity | +**log** | **string** | The log of the activity | +**payload** | **object** | The payload of the activity | +**description** | **string** | The description of the activity, formatted with HTML | +**text** | **string** | The description of the activity, formatted as plain text | +**expiresAt** | **\DateTime** | The date at which the activity will expire | +**commands** | [**\Upsun\Model\CommandsInner[]**](CommandsInner.md) | The commands of the activity | +**integration** | **string** | The integration the activity belongs to | [optional] +**environments** | **string[]** | The environments related to the activity | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AddonCredential.md b/docs/Model/AddonCredential.md new file mode 100644 index 00000000..eaf9c5ac --- /dev/null +++ b/docs/Model/AddonCredential.md @@ -0,0 +1,10 @@ +# # AddonCredential + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**addonKey** | **string** | The addon key (public identifier). | +**clientKey** | **string** | The client key (public identifier). | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AddonCredential1.md b/docs/Model/AddonCredential1.md new file mode 100644 index 00000000..511ac545 --- /dev/null +++ b/docs/Model/AddonCredential1.md @@ -0,0 +1,11 @@ +# # AddonCredential1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**addonKey** | **string** | The addon key (public identifier). | +**clientKey** | **string** | The client key (public identifier). | +**sharedSecret** | **string** | The secret of the client. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Address.md b/docs/Model/Address.md new file mode 100644 index 00000000..a5a02e18 --- /dev/null +++ b/docs/Model/Address.md @@ -0,0 +1,18 @@ +# # Address + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**country** | **string** | Two-letter country codes are used to represent countries and states | [optional] +**nameLine** | **string** | The full name of the user | [optional] +**premise** | **string** | Premise (i.e. Apt, Suite, Bldg.) | [optional] +**subPremise** | **string** | Sub Premise (i.e. Suite, Apartment, Floor, Unknown. | [optional] +**thoroughfare** | **string** | The address of the user | [optional] +**administrativeArea** | **string** | The administrative area of the user address | [optional] +**subAdministrativeArea** | **string** | The sub-administrative area of the user address | [optional] +**locality** | **string** | The locality of the user address | [optional] +**dependentLocality** | **string** | The dependant_locality area of the user address | [optional] +**postalCode** | **string** | The postal code area of the user address | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AddressGrantsInner.md b/docs/Model/AddressGrantsInner.md new file mode 100644 index 00000000..c8d96ec0 --- /dev/null +++ b/docs/Model/AddressGrantsInner.md @@ -0,0 +1,10 @@ +# # AddressGrantsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**permission** | **string** | | +**address** | **string** | IP address or CIDR | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AddressMetadata.md b/docs/Model/AddressMetadata.md new file mode 100644 index 00000000..375fe81d --- /dev/null +++ b/docs/Model/AddressMetadata.md @@ -0,0 +1,9 @@ +# # AddressMetadata + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**metadata** | [**\Upsun\Model\AddressMetadataMetadata**](AddressMetadataMetadata.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AddressMetadataMetadata.md b/docs/Model/AddressMetadataMetadata.md new file mode 100644 index 00000000..bee7d7d0 --- /dev/null +++ b/docs/Model/AddressMetadataMetadata.md @@ -0,0 +1,11 @@ +# # AddressMetadataMetadata + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**requiredFields** | **string[]** | Fields required to express the address. | [optional] +**fieldLabels** | **object** | Localized labels for address fields. | [optional] +**showVat** | **bool** | Whether this country supports a VAT number. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Alert.md b/docs/Model/Alert.md new file mode 100644 index 00000000..586cf74c --- /dev/null +++ b/docs/Model/Alert.md @@ -0,0 +1,14 @@ +# # Alert + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identification of the alert type. | [optional] +**active** | **bool** | Whether the alert is currently active. | [optional] +**alertsSent** | **int** | The amount of alerts of this type that have been sent so far. | [optional] +**lastAlertAt** | **\DateTime** | The time the last alert has been sent. | [optional] +**updatedAt** | **\DateTime** | The time the alert has last been updated. | [optional] +**config** | **object** | The alert type specific configuration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ApiToken.md b/docs/Model/ApiToken.md new file mode 100644 index 00000000..4b52a6b7 --- /dev/null +++ b/docs/Model/ApiToken.md @@ -0,0 +1,15 @@ +# # ApiToken + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the token. | [optional] +**name** | **string** | The token name. | [optional] +**mfaOnCreation** | **bool** | Whether the user had multi-factor authentication (MFA) enabled when they created the token. | [optional] +**token** | **string** | The token in plain text (available only when created). | [optional] +**createdAt** | **\DateTime** | The date and time when the token was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the token was last updated. | [optional] +**lastUsedAt** | **\DateTime** | The date and time when the token was last exchanged for an access token. This will be <code>null</code> for a token which has never been used, or not used since this API property was added. <strong>Note:</strong> After an API token is used, the derived access token may continue to be used until its expiry. This also applies to SSH certificate(s) derived from the access token. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ApplyOrgVoucherRequest.md b/docs/Model/ApplyOrgVoucherRequest.md new file mode 100644 index 00000000..cbd95e21 --- /dev/null +++ b/docs/Model/ApplyOrgVoucherRequest.md @@ -0,0 +1,9 @@ +# # ApplyOrgVoucherRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**code** | **string** | The voucher code. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ArrayFilter.md b/docs/Model/ArrayFilter.md new file mode 100644 index 00000000..ca57c6b1 --- /dev/null +++ b/docs/Model/ArrayFilter.md @@ -0,0 +1,12 @@ +# # ArrayFilter + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**eq** | **string** | Equal | [optional] +**ne** | **string** | Not equal | [optional] +**in** | **string** | In (comma-separated list) | [optional] +**nin** | **string** | Not in (comma-separated list) | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Author.md b/docs/Model/Author.md new file mode 100644 index 00000000..b8c569e9 --- /dev/null +++ b/docs/Model/Author.md @@ -0,0 +1,11 @@ +# # Author + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**date** | **\DateTime** | The time of the author or committer | +**name** | **string** | The name of the author or committer | +**email** | **string** | The email of the author or committer | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerCPUPressureTrigger.md b/docs/Model/AutoscalerCPUPressureTrigger.md new file mode 100644 index 00000000..bedfd2a7 --- /dev/null +++ b/docs/Model/AutoscalerCPUPressureTrigger.md @@ -0,0 +1,11 @@ +# # AutoscalerCPUPressureTrigger + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the trigger is enabled | [optional] +**down** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Lower bound on resource usage | [optional] +**up** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Upper bound on resource usage | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerCPUResources.md b/docs/Model/AutoscalerCPUResources.md new file mode 100644 index 00000000..2e31b7a5 --- /dev/null +++ b/docs/Model/AutoscalerCPUResources.md @@ -0,0 +1,10 @@ +# # AutoscalerCPUResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**min** | **float** | Minimum CPUs when scaling down vertically | [optional] +**max** | **float** | Maximum CPUs when scaling up vertically | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerCPUTrigger.md b/docs/Model/AutoscalerCPUTrigger.md new file mode 100644 index 00000000..8693eb8b --- /dev/null +++ b/docs/Model/AutoscalerCPUTrigger.md @@ -0,0 +1,11 @@ +# # AutoscalerCPUTrigger + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the trigger is enabled | [optional] +**down** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Lower bound on resource usage | [optional] +**up** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Upper bound on resource usage | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerCondition.md b/docs/Model/AutoscalerCondition.md new file mode 100644 index 00000000..912b3b91 --- /dev/null +++ b/docs/Model/AutoscalerCondition.md @@ -0,0 +1,11 @@ +# # AutoscalerCondition + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**threshold** | **float** | Value at which the condition is satisfied | +**duration** | [**\Upsun\Model\AutoscalerDuration**](AutoscalerDuration.md) | Number of seconds during which the condition must be satisfied | [optional] +**enabled** | **bool** | Whether the condition should be used for generating alerts | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerDuration.md b/docs/Model/AutoscalerDuration.md new file mode 100644 index 00000000..c6dae976 --- /dev/null +++ b/docs/Model/AutoscalerDuration.md @@ -0,0 +1,8 @@ +# # AutoscalerDuration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerInstances.md b/docs/Model/AutoscalerInstances.md new file mode 100644 index 00000000..665f88d7 --- /dev/null +++ b/docs/Model/AutoscalerInstances.md @@ -0,0 +1,10 @@ +# # AutoscalerInstances + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**min** | **int** | Minimum number of instances when scaling down horizontally | [optional] +**max** | **int** | Maximum number of instances when scaling up horizontally | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerMemoryPressureTrigger.md b/docs/Model/AutoscalerMemoryPressureTrigger.md new file mode 100644 index 00000000..b48fb614 --- /dev/null +++ b/docs/Model/AutoscalerMemoryPressureTrigger.md @@ -0,0 +1,11 @@ +# # AutoscalerMemoryPressureTrigger + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the trigger is enabled | [optional] +**down** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Lower bound on resource usage | [optional] +**up** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Upper bound on resource usage | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerMemoryResources.md b/docs/Model/AutoscalerMemoryResources.md new file mode 100644 index 00000000..069c5bad --- /dev/null +++ b/docs/Model/AutoscalerMemoryResources.md @@ -0,0 +1,10 @@ +# # AutoscalerMemoryResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**min** | **int** | Minimum memory (bytes) when scaling down vertically | [optional] +**max** | **int** | Maximum memory (bytes) when scaling up vertically | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerMemoryTrigger.md b/docs/Model/AutoscalerMemoryTrigger.md new file mode 100644 index 00000000..4548ea7d --- /dev/null +++ b/docs/Model/AutoscalerMemoryTrigger.md @@ -0,0 +1,11 @@ +# # AutoscalerMemoryTrigger + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the trigger is enabled | [optional] +**down** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Lower bound on resource usage | [optional] +**up** | [**\Upsun\Model\AutoscalerCondition**](AutoscalerCondition.md) | Upper bound on resource usage | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerResources.md b/docs/Model/AutoscalerResources.md new file mode 100644 index 00000000..fc99de5c --- /dev/null +++ b/docs/Model/AutoscalerResources.md @@ -0,0 +1,10 @@ +# # AutoscalerResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | [**array**](AutoscalerCPUResources.md) | Lower/Upper bounds on CPU allocation when scaling | [optional] +**memory** | [**array**](AutoscalerMemoryResources.md) | Lower/Upper bounds on Memory allocation when scaling | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerScalingCooldown.md b/docs/Model/AutoscalerScalingCooldown.md new file mode 100644 index 00000000..b22a0e55 --- /dev/null +++ b/docs/Model/AutoscalerScalingCooldown.md @@ -0,0 +1,10 @@ +# # AutoscalerScalingCooldown + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**up** | **int** | Number of seconds to wait until scaling up can be done again (since last attempt) | [optional] +**down** | **int** | Number of seconds to wait until scaling down can be done again (since last attempt) | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerScalingFactor.md b/docs/Model/AutoscalerScalingFactor.md new file mode 100644 index 00000000..a9c47817 --- /dev/null +++ b/docs/Model/AutoscalerScalingFactor.md @@ -0,0 +1,10 @@ +# # AutoscalerScalingFactor + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**up** | **int** | Number of instances to add when scaling up horizontally | [optional] +**down** | **int** | Number of instances to remove when scaling down horizontally | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerServiceSettings.md b/docs/Model/AutoscalerServiceSettings.md new file mode 100644 index 00000000..8bf2e1ec --- /dev/null +++ b/docs/Model/AutoscalerServiceSettings.md @@ -0,0 +1,13 @@ +# # AutoscalerServiceSettings + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**triggers** | [**\Upsun\Model\AutoscalerTriggers**](AutoscalerTriggers.md) | Metrics should be evaluated as triggers for autoscaling | [optional] +**instances** | [**\Upsun\Model\AutoscalerInstances**](AutoscalerInstances.md) | Lower/Upper bounds on number of instances for horizontal scaling | [optional] +**resources** | [**\Upsun\Model\AutoscalerResources**](AutoscalerResources.md) | Lower/Upper bounds on cpu/memory for vertical scaling | [optional] +**scaleFactor** | [**\Upsun\Model\AutoscalerScalingFactor**](AutoscalerScalingFactor.md) | How many instances to add/remove on each scaling attempt | [optional] +**scaleCooldown** | [**\Upsun\Model\AutoscalerScalingCooldown**](AutoscalerScalingCooldown.md) | How long to wait before the next scaling attempt can be performed | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerSettings.md b/docs/Model/AutoscalerSettings.md new file mode 100644 index 00000000..e28755f7 --- /dev/null +++ b/docs/Model/AutoscalerSettings.md @@ -0,0 +1,9 @@ +# # AutoscalerSettings + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**services** | **array>** | Each service for which autoscaling is configured is listed in the key | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/AutoscalerTriggers.md b/docs/Model/AutoscalerTriggers.md new file mode 100644 index 00000000..b8fd449f --- /dev/null +++ b/docs/Model/AutoscalerTriggers.md @@ -0,0 +1,12 @@ +# # AutoscalerTriggers + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | [**array**](AutoscalerCPUTrigger.md) | Settings for scaling based on CPU usage | [optional] +**memory** | [**array**](AutoscalerMemoryTrigger.md) | Settings for scaling based on Memory usage | [optional] +**cpuPressure** | [**array**](AutoscalerCPUPressureTrigger.md) | Settings for scaling based on CPU pressure | [optional] +**memoryPressure** | [**array**](AutoscalerMemoryPressureTrigger.md) | Settings for scaling based on Memory pressure | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Autoscaling.md b/docs/Model/Autoscaling.md new file mode 100644 index 00000000..c5a02c1f --- /dev/null +++ b/docs/Model/Autoscaling.md @@ -0,0 +1,9 @@ +# # Autoscaling + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, autoscaling can be configured. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Backup.md b/docs/Model/Backup.md new file mode 100644 index 00000000..d373c104 --- /dev/null +++ b/docs/Model/Backup.md @@ -0,0 +1,23 @@ +# # Backup + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Backup | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**status** | **string** | The status of the backup | +**expiresAt** | **\DateTime** | Expiration date of the backup | +**index** | **int** | The index of this automated backup | +**commitId** | **string** | The ID of the code commit attached to the backup | +**environment** | **string** | The environment the backup belongs to | +**safe** | **bool** | Whether this backup was taken in a safe way | +**sizeOfVolumes** | **int** | Total size of volumes backed up | +**sizeUsed** | **int** | Total size of space used on volumes backed up | +**deployment** | **string** | The current deployment at the time of backup | +**restorable** | **bool** | Whether the backup is restorable | +**automated** | **bool** | Whether the backup is automated | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Bitbucket.md b/docs/Model/Bitbucket.md new file mode 100644 index 00000000..b1934d88 --- /dev/null +++ b/docs/Model/Bitbucket.md @@ -0,0 +1,10 @@ +# # Bitbucket + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketIntegration.md b/docs/Model/BitbucketIntegration.md new file mode 100644 index 00000000..3ac85c0b --- /dev/null +++ b/docs/Model/BitbucketIntegration.md @@ -0,0 +1,21 @@ +# # BitbucketIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fetchBranches** | **bool** | Whether or not to fetch branches. | +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | +**environmentInitResources** | **string** | The resources used when initializing a new service | +**repository** | **string** | The Bitbucket repository (in the form `user/repo`). | +**buildPullRequests** | **bool** | Whether or not to build pull requests. | +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | +**id** | **string** | The identifier of BitbucketIntegration | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer**](OAuth2Consumer.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential**](AddonCredential.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketIntegrationCreateInput.md b/docs/Model/BitbucketIntegrationCreateInput.md new file mode 100644 index 00000000..b7fbe6f7 --- /dev/null +++ b/docs/Model/BitbucketIntegrationCreateInput.md @@ -0,0 +1,18 @@ +# # BitbucketIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**repository** | **string** | The Bitbucket repository (in the form `user/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer1**](OAuth2Consumer1.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential1**](AddonCredential1.md) | | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketIntegrationPatch.md b/docs/Model/BitbucketIntegrationPatch.md new file mode 100644 index 00000000..cc07590d --- /dev/null +++ b/docs/Model/BitbucketIntegrationPatch.md @@ -0,0 +1,18 @@ +# # BitbucketIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**repository** | **string** | The Bitbucket repository (in the form `user/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer1**](OAuth2Consumer1.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential1**](AddonCredential1.md) | | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketServer.md b/docs/Model/BitbucketServer.md new file mode 100644 index 00000000..13fa06dc --- /dev/null +++ b/docs/Model/BitbucketServer.md @@ -0,0 +1,10 @@ +# # BitbucketServer + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketServerIntegration.md b/docs/Model/BitbucketServerIntegration.md new file mode 100644 index 00000000..6b50a03b --- /dev/null +++ b/docs/Model/BitbucketServerIntegration.md @@ -0,0 +1,21 @@ +# # BitbucketServerIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fetchBranches** | **bool** | Whether or not to fetch branches. | +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | +**environmentInitResources** | **string** | The resources used when initializing a new service | +**url** | **string** | The base URL of the Bitbucket Server installation. | +**username** | **string** | The Bitbucket Server user. | +**project** | **string** | The Bitbucket Server project | +**repository** | **string** | The Bitbucket Server repository | +**buildPullRequests** | **bool** | Whether or not to build pull requests. | +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | +**id** | **string** | The identifier of BitbucketServerIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketServerIntegrationCreateInput.md b/docs/Model/BitbucketServerIntegrationCreateInput.md new file mode 100644 index 00000000..3d6790e8 --- /dev/null +++ b/docs/Model/BitbucketServerIntegrationCreateInput.md @@ -0,0 +1,19 @@ +# # BitbucketServerIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The base URL of the Bitbucket Server installation. | +**username** | **string** | The Bitbucket Server user. | +**token** | **string** | The Bitbucket Server personal access token. | +**project** | **string** | The Bitbucket Server project | +**repository** | **string** | The Bitbucket Server repository | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BitbucketServerIntegrationPatch.md b/docs/Model/BitbucketServerIntegrationPatch.md new file mode 100644 index 00000000..2b9da943 --- /dev/null +++ b/docs/Model/BitbucketServerIntegrationPatch.md @@ -0,0 +1,19 @@ +# # BitbucketServerIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The base URL of the Bitbucket Server installation. | +**username** | **string** | The Bitbucket Server user. | +**token** | **string** | The Bitbucket Server personal access token. | +**project** | **string** | The Bitbucket Server project | +**repository** | **string** | The Bitbucket Server repository | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Blackfire.md b/docs/Model/Blackfire.md new file mode 100644 index 00000000..068cffe8 --- /dev/null +++ b/docs/Model/Blackfire.md @@ -0,0 +1,10 @@ +# # Blackfire + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BlackfireIntegration.md b/docs/Model/BlackfireIntegration.md new file mode 100644 index 00000000..69af0426 --- /dev/null +++ b/docs/Model/BlackfireIntegration.md @@ -0,0 +1,14 @@ +# # BlackfireIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**environmentsCredentials** | [**array**](EnvironmentsCredentialsValue.md) | Blackfire environments credentials | +**continuousProfiling** | **bool** | Whether continuous profiling is enabled for the project | +**id** | **string** | The identifier of BlackfireIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BlackfireIntegrationCreateInput.md b/docs/Model/BlackfireIntegrationCreateInput.md new file mode 100644 index 00000000..c4d77a72 --- /dev/null +++ b/docs/Model/BlackfireIntegrationCreateInput.md @@ -0,0 +1,9 @@ +# # BlackfireIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BlackfireIntegrationPatch.md b/docs/Model/BlackfireIntegrationPatch.md new file mode 100644 index 00000000..b1328c9a --- /dev/null +++ b/docs/Model/BlackfireIntegrationPatch.md @@ -0,0 +1,9 @@ +# # BlackfireIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Blob.md b/docs/Model/Blob.md new file mode 100644 index 00000000..48cdfd56 --- /dev/null +++ b/docs/Model/Blob.md @@ -0,0 +1,13 @@ +# # Blob + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Blob | +**sha** | **string** | The identifier of the tag | +**size** | **int** | The size of the blob | +**encoding** | **string** | The encoding of the contents | +**content** | **string** | The contents | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BuildCachesValue.md b/docs/Model/BuildCachesValue.md new file mode 100644 index 00000000..04fcdd1b --- /dev/null +++ b/docs/Model/BuildCachesValue.md @@ -0,0 +1,12 @@ +# # BuildCachesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**directory** | **string** | The directory, relative to the application root, that should be cached. | +**watch** | **string[]** | The file or files whose hashed contents should be considered part of the cache key. | +**allowStale** | **bool** | If true, on a cache miss the last cache version will be used and can be updated in place. | +**shareBetweenApps** | **bool** | Whether multiple applications in the project should share cached directories. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BuildConfiguration.md b/docs/Model/BuildConfiguration.md new file mode 100644 index 00000000..a0b1336f --- /dev/null +++ b/docs/Model/BuildConfiguration.md @@ -0,0 +1,10 @@ +# # BuildConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**flavor** | **string** | The pre-set build tasks to use for this application. | +**caches** | [**array**](BuildCachesValue.md) | The configuration of paths managed by the build cache. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BuildResources.md b/docs/Model/BuildResources.md new file mode 100644 index 00000000..f2bcb88f --- /dev/null +++ b/docs/Model/BuildResources.md @@ -0,0 +1,11 @@ +# # BuildResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, build resources can be modified. | +**maxCpu** | **float** | | +**maxMemory** | **int** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BuildResources1.md b/docs/Model/BuildResources1.md new file mode 100644 index 00000000..e1f62cd6 --- /dev/null +++ b/docs/Model/BuildResources1.md @@ -0,0 +1,10 @@ +# # BuildResources1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | | +**memory** | **int** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/BuildResources2.md b/docs/Model/BuildResources2.md new file mode 100644 index 00000000..2c107080 --- /dev/null +++ b/docs/Model/BuildResources2.md @@ -0,0 +1,10 @@ +# # BuildResources2 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | | [optional] +**memory** | **int** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CacheConfiguration.md b/docs/Model/CacheConfiguration.md new file mode 100644 index 00000000..776420b2 --- /dev/null +++ b/docs/Model/CacheConfiguration.md @@ -0,0 +1,12 @@ +# # CacheConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the cache is enabled. | +**defaultTtl** | **int** | The TTL to apply when the response doesn't specify one. Only applies to static files. | +**cookies** | **string[]** | The cookies to take into account for the cache key. | +**headers** | **string[]** | The headers to take into account for the cache key. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CanCreateNewOrgSubscription200Response.md b/docs/Model/CanCreateNewOrgSubscription200Response.md new file mode 100644 index 00000000..fa7cb66c --- /dev/null +++ b/docs/Model/CanCreateNewOrgSubscription200Response.md @@ -0,0 +1,11 @@ +# # CanCreateNewOrgSubscription200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**canCreate** | **bool** | Boolean result of the check. | [optional] +**message** | **string** | Details in case of negative check result. | [optional] +**requiredAction** | [**\Upsun\Model\CanCreateNewOrgSubscription200ResponseRequiredAction**](CanCreateNewOrgSubscription200ResponseRequiredAction.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.md b/docs/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.md new file mode 100644 index 00000000..fbc2227d --- /dev/null +++ b/docs/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.md @@ -0,0 +1,10 @@ +# # CanCreateNewOrgSubscription200ResponseRequiredAction + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**action** | **string** | Machine readable definition of requirement. | [optional] +**type** | **string** | Specification of the type of action. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CanUpdateSubscription200Response.md b/docs/Model/CanUpdateSubscription200Response.md new file mode 100644 index 00000000..876ac9f6 --- /dev/null +++ b/docs/Model/CanUpdateSubscription200Response.md @@ -0,0 +1,11 @@ +# # CanUpdateSubscription200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**canUpdate** | **bool** | Boolean result of the check. | [optional] +**message** | **string** | Details in case of negative check result. | [optional] +**requiredAction** | **object** | Required action impeding project update. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Certificate.md b/docs/Model/Certificate.md new file mode 100644 index 00000000..4aa20c58 --- /dev/null +++ b/docs/Model/Certificate.md @@ -0,0 +1,20 @@ +# # Certificate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Certificate | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**certificate** | **string** | The PEM-encoded certificate | +**chain** | **string[]** | The certificate chain | +**isProvisioned** | **bool** | Whether this certificate is automatically provisioned | +**isInvalid** | **bool** | Whether this certificate should be skipped during provisioning | +**isRoot** | **bool** | Whether this certificate is root type | +**domains** | **string[]** | The domains covered by this certificate | +**authType** | **string[]** | The type of authentication the certificate supports | +**issuer** | [**\Upsun\Model\IssuerInner[]**](IssuerInner.md) | The issuer of the certificate | +**expiresAt** | **\DateTime** | Expiration date | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CertificateCreateInput.md b/docs/Model/CertificateCreateInput.md new file mode 100644 index 00000000..d39cd7c8 --- /dev/null +++ b/docs/Model/CertificateCreateInput.md @@ -0,0 +1,12 @@ +# # CertificateCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**certificate** | **string** | The PEM-encoded certificate | +**key** | **string** | The PEM-encoded private key | +**chain** | **string[]** | The certificate chain | [optional] +**isInvalid** | **bool** | Whether this certificate should be skipped during provisioning | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CertificatePatch.md b/docs/Model/CertificatePatch.md new file mode 100644 index 00000000..cb08e20a --- /dev/null +++ b/docs/Model/CertificatePatch.md @@ -0,0 +1,10 @@ +# # CertificatePatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**chain** | **string[]** | The certificate chain | [optional] +**isInvalid** | **bool** | Whether this certificate should be skipped during provisioning | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CertificateProvisioner.md b/docs/Model/CertificateProvisioner.md new file mode 100644 index 00000000..7135c7dc --- /dev/null +++ b/docs/Model/CertificateProvisioner.md @@ -0,0 +1,13 @@ +# # CertificateProvisioner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of CertificateProvisioner | +**directoryUrl** | **string** | The URL to the ACME directory | +**email** | **string** | The email address for contact information | +**eabKid** | **string** | The key identifier for Entity Attestation Binding | +**eabHmacKey** | **string** | The Keyed-'Hashing Message Authentication Code' for Entity Attestation Binding | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CertificateProvisionerPatch.md b/docs/Model/CertificateProvisionerPatch.md new file mode 100644 index 00000000..973a8ade --- /dev/null +++ b/docs/Model/CertificateProvisionerPatch.md @@ -0,0 +1,12 @@ +# # CertificateProvisionerPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**directoryUrl** | **string** | The URL to the ACME directory | [optional] +**email** | **string** | The email address for contact information | [optional] +**eabKid** | **string** | The key identifier for Entity Attestation Binding | [optional] +**eabHmacKey** | **string** | The Keyed-'Hashing Message Authentication Code' for Entity Attestation Binding | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Commands.md b/docs/Model/Commands.md new file mode 100644 index 00000000..424acbf9 --- /dev/null +++ b/docs/Model/Commands.md @@ -0,0 +1,10 @@ +# # Commands + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**start** | **string** | The command used to start the operation. | +**stop** | **string** | The command used to stop the operation. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Commands1.md b/docs/Model/Commands1.md new file mode 100644 index 00000000..1c000a77 --- /dev/null +++ b/docs/Model/Commands1.md @@ -0,0 +1,11 @@ +# # Commands1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**preStart** | **string** | A command executed before the application is started | [optional] +**start** | **string** | The command used to start the application. It will be restarted if it terminates. Do not use on PHP unless using a custom persistent process like React PHP. | [optional] +**postStart** | **string** | A command executed after the application is started | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Commands2.md b/docs/Model/Commands2.md new file mode 100644 index 00000000..4b7b0c0c --- /dev/null +++ b/docs/Model/Commands2.md @@ -0,0 +1,11 @@ +# # Commands2 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**start** | **string** | The command used to start the worker. | +**preStart** | **string** | A command executed before the worker is started | [optional] +**postStart** | **string** | A command executed after the worker is started | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CommandsInner.md b/docs/Model/CommandsInner.md new file mode 100644 index 00000000..1c1529ed --- /dev/null +++ b/docs/Model/CommandsInner.md @@ -0,0 +1,11 @@ +# # CommandsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**app** | **string** | | +**type** | **string** | | +**exitCode** | **int** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Commit.md b/docs/Model/Commit.md new file mode 100644 index 00000000..f1ab1b38 --- /dev/null +++ b/docs/Model/Commit.md @@ -0,0 +1,15 @@ +# # Commit + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Commit | +**sha** | **string** | The identifier of the commit | +**author** | [**\Upsun\Model\Author**](Author.md) | | +**committer** | [**\Upsun\Model\Committer**](Committer.md) | | +**message** | **string** | The commit message | +**tree** | **string** | The identifier of the tree | +**parents** | **string[]** | The identifiers of the parents of the commit | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Committer.md b/docs/Model/Committer.md new file mode 100644 index 00000000..2ed335d8 --- /dev/null +++ b/docs/Model/Committer.md @@ -0,0 +1,11 @@ +# # Committer + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**date** | **\DateTime** | The time of the author or committer | +**name** | **string** | The name of the author or committer | +**email** | **string** | The email of the author or committer | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Components.md b/docs/Model/Components.md new file mode 100644 index 00000000..75a9d1aa --- /dev/null +++ b/docs/Model/Components.md @@ -0,0 +1,9 @@ +# # Components + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**voucherVatBaseprice** | **object** | stub | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Config.md b/docs/Model/Config.md new file mode 100644 index 00000000..d4de5f58 --- /dev/null +++ b/docs/Model/Config.md @@ -0,0 +1,26 @@ +# # Config + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**newrelic** | [**\Upsun\Model\NewRelic**](NewRelic.md) | | [optional] +**sumologic** | [**\Upsun\Model\SumoLogic**](SumoLogic.md) | | [optional] +**splunk** | [**\Upsun\Model\Splunk**](Splunk.md) | | [optional] +**httplog** | [**\Upsun\Model\HTTPLogForwarding**](HTTPLogForwarding.md) | | [optional] +**syslog** | [**\Upsun\Model\Syslog**](Syslog.md) | | [optional] +**webhook** | [**\Upsun\Model\Webhook**](Webhook.md) | | [optional] +**script** | [**\Upsun\Model\Script**](Script.md) | | [optional] +**github** | [**\Upsun\Model\GitHub**](GitHub.md) | | [optional] +**gitlab** | [**\Upsun\Model\GitLab**](GitLab.md) | | [optional] +**bitbucket** | [**\Upsun\Model\Bitbucket**](Bitbucket.md) | | [optional] +**bitbucketServer** | [**\Upsun\Model\BitbucketServer**](BitbucketServer.md) | | [optional] +**healthEmail** | [**\Upsun\Model\HealthEmail**](HealthEmail.md) | | [optional] +**healthWebhook** | [**\Upsun\Model\HealthWebHook**](HealthWebHook.md) | | [optional] +**healthPagerduty** | [**\Upsun\Model\HealthPagerDuty**](HealthPagerDuty.md) | | [optional] +**healthSlack** | [**\Upsun\Model\HealthSlack**](HealthSlack.md) | | [optional] +**cdnFastly** | [**\Upsun\Model\FastlyCDN**](FastlyCDN.md) | | [optional] +**blackfire** | [**\Upsun\Model\Blackfire**](Blackfire.md) | | [optional] +**otlplog** | [**\Upsun\Model\OpenTelemetry**](OpenTelemetry.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ConfirmPhoneNumberRequest.md b/docs/Model/ConfirmPhoneNumberRequest.md new file mode 100644 index 00000000..0d2e5b8a --- /dev/null +++ b/docs/Model/ConfirmPhoneNumberRequest.md @@ -0,0 +1,9 @@ +# # ConfirmPhoneNumberRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**code** | **string** | The verification code received on your phone. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ConfirmTotpEnrollment200Response.md b/docs/Model/ConfirmTotpEnrollment200Response.md new file mode 100644 index 00000000..0fc82130 --- /dev/null +++ b/docs/Model/ConfirmTotpEnrollment200Response.md @@ -0,0 +1,9 @@ +# # ConfirmTotpEnrollment200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**recoveryCodes** | **string[]** | A list of recovery codes for the MFA enrollment. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ConfirmTotpEnrollmentRequest.md b/docs/Model/ConfirmTotpEnrollmentRequest.md new file mode 100644 index 00000000..6fb27f85 --- /dev/null +++ b/docs/Model/ConfirmTotpEnrollmentRequest.md @@ -0,0 +1,10 @@ +# # ConfirmTotpEnrollmentRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**secret** | **string** | The secret seed for the enrollment | +**passcode** | **string** | TOTP passcode for the enrollment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Connection.md b/docs/Model/Connection.md new file mode 100644 index 00000000..d596fe56 --- /dev/null +++ b/docs/Model/Connection.md @@ -0,0 +1,15 @@ +# # Connection + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**provider** | **string** | The name of the federation provider. | [optional] +**providerType** | **string** | The type of the federation provider. | [optional] +**isMandatory** | **bool** | Whether the federated login connection is mandatory. | [optional] +**subject** | **string** | The identity on the federation provider. | [optional] +**emailAddress** | **string** | The email address presented on the federated login connection. | [optional] +**createdAt** | **\DateTime** | The date and time when the connection was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the connection was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ContainerProfilesValueValue.md b/docs/Model/ContainerProfilesValueValue.md new file mode 100644 index 00000000..b7d07935 --- /dev/null +++ b/docs/Model/ContainerProfilesValueValue.md @@ -0,0 +1,11 @@ +# # ContainerProfilesValueValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | Cpu value | +**memory** | **int** | Memory in MB | +**cpuType** | **string** | resource type | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ContinuousProfilingConfiguration.md b/docs/Model/ContinuousProfilingConfiguration.md new file mode 100644 index 00000000..81c36ed6 --- /dev/null +++ b/docs/Model/ContinuousProfilingConfiguration.md @@ -0,0 +1,9 @@ +# # ContinuousProfilingConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**supportedRuntimes** | **string[]** | List of images supported for continuous profiling | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateApiTokenRequest.md b/docs/Model/CreateApiTokenRequest.md new file mode 100644 index 00000000..511809fd --- /dev/null +++ b/docs/Model/CreateApiTokenRequest.md @@ -0,0 +1,9 @@ +# # CreateApiTokenRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | The token name. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateAuthorizationCredentials200Response.md b/docs/Model/CreateAuthorizationCredentials200Response.md new file mode 100644 index 00000000..7dc2dead --- /dev/null +++ b/docs/Model/CreateAuthorizationCredentials200Response.md @@ -0,0 +1,10 @@ +# # CreateAuthorizationCredentials200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**redirectToUrl** | [**\Upsun\Model\CreateAuthorizationCredentials200ResponseRedirectToUrl**](CreateAuthorizationCredentials200ResponseRedirectToUrl.md) | | [optional] +**type** | **string** | Required payment action type. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.md b/docs/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.md new file mode 100644 index 00000000..c0de9ab2 --- /dev/null +++ b/docs/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.md @@ -0,0 +1,10 @@ +# # CreateAuthorizationCredentials200ResponseRedirectToUrl + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**returnUrl** | **string** | Return URL after payment completion. | [optional] +**url** | **string** | URL for payment finalization. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateOrgInviteRequest.md b/docs/Model/CreateOrgInviteRequest.md new file mode 100644 index 00000000..1cbb02ce --- /dev/null +++ b/docs/Model/CreateOrgInviteRequest.md @@ -0,0 +1,11 @@ +# # CreateOrgInviteRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**email** | **string** | The email address of the invitee. | +**permissions** | **string[]** | The permissions the invitee should be given on the organization. | +**force** | **bool** | Whether to cancel any pending invitation for the specified invitee, and create a new invitation. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateOrgMemberRequest.md b/docs/Model/CreateOrgMemberRequest.md new file mode 100644 index 00000000..2136905e --- /dev/null +++ b/docs/Model/CreateOrgMemberRequest.md @@ -0,0 +1,10 @@ +# # CreateOrgMemberRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userId** | **string** | ID of the user. | +**permissions** | **string[]** | The organization member permissions. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateOrgProjectRequest.md b/docs/Model/CreateOrgProjectRequest.md new file mode 100644 index 00000000..c29507b2 --- /dev/null +++ b/docs/Model/CreateOrgProjectRequest.md @@ -0,0 +1,16 @@ +# # CreateOrgProjectRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**region** | **string** | The machine name of the region where the project is located. | +**organizationId** | **string** | The ID of the organization. | [optional] +**title** | **string** | The title of the project. | [optional] +**type** | [**\Upsun\Model\ProjectType**](ProjectType.md) | | [optional] +**plan** | **string** | The project plan. | [optional] +**defaultBranch** | **string** | Default branch. | [optional] +**cseNotes** | **string** | CSE notes. | [optional] +**dedicatedTag** | **string** | Dedicated tag. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateOrgRequest.md b/docs/Model/CreateOrgRequest.md new file mode 100644 index 00000000..84c0bc01 --- /dev/null +++ b/docs/Model/CreateOrgRequest.md @@ -0,0 +1,13 @@ +# # CreateOrgRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**label** | **string** | The human-readable label of the organization. | +**type** | **string** | The type of the organization. | [optional] +**ownerId** | **string** | ID of the owner. | [optional] +**name** | **string** | A unique machine name representing the organization. | [optional] +**country** | **string** | The organization country (2-letter country code). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateOrgSubscriptionRequest.md b/docs/Model/CreateOrgSubscriptionRequest.md new file mode 100644 index 00000000..59817bbf --- /dev/null +++ b/docs/Model/CreateOrgSubscriptionRequest.md @@ -0,0 +1,15 @@ +# # CreateOrgSubscriptionRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectRegion** | **string** | The machine name of the region where the project is located. Cannot be changed after project creation. | +**plan** | **string** | The project plan. | [optional] +**projectTitle** | **string** | The name given to the project. Appears as the title in the UI. | [optional] +**optionsUrl** | **string** | The URL of the project options file. | [optional] +**defaultBranch** | **string** | The default Git branch name for the project. | [optional] +**environments** | **int** | The maximum number of active environments on the project. | [optional] +**storage** | **int** | The total storage available to each environment, in MiB. Only multiples of 1024 are accepted as legal values. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateProfilePicture200Response.md b/docs/Model/CreateProfilePicture200Response.md new file mode 100644 index 00000000..ccd30a1e --- /dev/null +++ b/docs/Model/CreateProfilePicture200Response.md @@ -0,0 +1,9 @@ +# # CreateProfilePicture200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**url** | **string** | The relative url of the picture. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateProjectInviteRequest.md b/docs/Model/CreateProjectInviteRequest.md new file mode 100644 index 00000000..1fedeaed --- /dev/null +++ b/docs/Model/CreateProjectInviteRequest.md @@ -0,0 +1,13 @@ +# # CreateProjectInviteRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**email** | **string** | The email address of the invitee. | +**role** | **string** | The role the invitee should be given on the project. | [optional] +**permissions** | [**\Upsun\Model\CreateProjectInviteRequestPermissionsInner[]**](CreateProjectInviteRequestPermissionsInner.md) | Specifying the role on each environment type. | [optional] +**environments** | [**\Upsun\Model\CreateProjectInviteRequestEnvironmentsInner[]**](CreateProjectInviteRequestEnvironmentsInner.md) | (Deprecated, use permissions instead) Specifying the role on each environment. | [optional] +**force** | **bool** | Whether to cancel any pending invitation for the specified invitee, and create a new invitation. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateProjectInviteRequestEnvironmentsInner.md b/docs/Model/CreateProjectInviteRequestEnvironmentsInner.md new file mode 100644 index 00000000..75b82993 --- /dev/null +++ b/docs/Model/CreateProjectInviteRequestEnvironmentsInner.md @@ -0,0 +1,10 @@ +# # CreateProjectInviteRequestEnvironmentsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the environment. | [optional] +**role** | **string** | The role the invitee should be given on the environment. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateProjectInviteRequestPermissionsInner.md b/docs/Model/CreateProjectInviteRequestPermissionsInner.md new file mode 100644 index 00000000..058c5faa --- /dev/null +++ b/docs/Model/CreateProjectInviteRequestPermissionsInner.md @@ -0,0 +1,10 @@ +# # CreateProjectInviteRequestPermissionsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The environment type. | [optional] +**role** | **string** | The role the invitee should be given on the environment type. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateSshKeyRequest.md b/docs/Model/CreateSshKeyRequest.md new file mode 100644 index 00000000..75030949 --- /dev/null +++ b/docs/Model/CreateSshKeyRequest.md @@ -0,0 +1,11 @@ +# # CreateSshKeyRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**value** | **string** | The value of the ssh key. | +**title** | **string** | The title of the ssh key. | [optional] +**uuid** | **string** | The uuid of the user. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateTeamMemberRequest.md b/docs/Model/CreateTeamMemberRequest.md new file mode 100644 index 00000000..c16877fd --- /dev/null +++ b/docs/Model/CreateTeamMemberRequest.md @@ -0,0 +1,9 @@ +# # CreateTeamMemberRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userId** | **string** | ID of the user. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateTeamRequest.md b/docs/Model/CreateTeamRequest.md new file mode 100644 index 00000000..3928acff --- /dev/null +++ b/docs/Model/CreateTeamRequest.md @@ -0,0 +1,11 @@ +# # CreateTeamRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**organizationId** | **string** | The ID of the parent organization. | +**label** | **string** | The human-readable label of the team. | +**projectPermissions** | **string[]** | Project permissions that are granted to the team. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateTicketRequest.md b/docs/Model/CreateTicketRequest.md new file mode 100644 index 00000000..12de974e --- /dev/null +++ b/docs/Model/CreateTicketRequest.md @@ -0,0 +1,19 @@ +# # CreateTicketRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**subject** | **string** | A title of the ticket. | +**description** | **string** | The description body of the support ticket. | +**requesterId** | **string** | UUID of the ticket requester. Converted from the ZID value. | [optional] +**priority** | **string** | A priority of the ticket. | [optional] +**subscriptionId** | **string** | see create() | [optional] +**organizationId** | **string** | see create() | [optional] +**affectedUrl** | **string** | see create(). | [optional] +**followupTid** | **string** | The unique ID of the ticket which this ticket is a follow-up to. | [optional] +**category** | **string** | The category of the support ticket. | [optional] +**attachments** | [**\Upsun\Model\CreateTicketRequestAttachmentsInner[]**](CreateTicketRequestAttachmentsInner.md) | A list of attachments for the ticket. | [optional] +**collaboratorIds** | **string[]** | A list of collaborators uuids for the ticket. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CreateTicketRequestAttachmentsInner.md b/docs/Model/CreateTicketRequestAttachmentsInner.md new file mode 100644 index 00000000..9f57e7dc --- /dev/null +++ b/docs/Model/CreateTicketRequestAttachmentsInner.md @@ -0,0 +1,10 @@ +# # CreateTicketRequestAttachmentsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**filename** | **string** | The filename to be used in storage. | [optional] +**data** | **string** | the base64 encoded file. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CronsDeploymentState.md b/docs/Model/CronsDeploymentState.md new file mode 100644 index 00000000..0ac931c0 --- /dev/null +++ b/docs/Model/CronsDeploymentState.md @@ -0,0 +1,10 @@ +# # CronsDeploymentState + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Enabled or disabled | +**status** | **string** | The status of the crons | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CronsValue.md b/docs/Model/CronsValue.md new file mode 100644 index 00000000..32924f2c --- /dev/null +++ b/docs/Model/CronsValue.md @@ -0,0 +1,13 @@ +# # CronsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**spec** | **string** | The cron schedule specification. | +**commands** | [**\Upsun\Model\Commands**](Commands.md) | | +**timeout** | **int** | The maximum timeout in seconds after which the cron job will be forcefully killed. | +**shutdownTimeout** | **int** | The timeout in seconds after which the cron job will be forcefully killed. | [optional] +**cmd** | **string** | The command to execute. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CurrencyAmount.md b/docs/Model/CurrencyAmount.md new file mode 100644 index 00000000..8e3761dc --- /dev/null +++ b/docs/Model/CurrencyAmount.md @@ -0,0 +1,12 @@ +# # CurrencyAmount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted currency value. | [optional] +**amount** | **float** | Plain amount. | [optional] +**currencyCode** | **string** | Currency code. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CurrencyAmountNullable.md b/docs/Model/CurrencyAmountNullable.md new file mode 100644 index 00000000..48903bb5 --- /dev/null +++ b/docs/Model/CurrencyAmountNullable.md @@ -0,0 +1,12 @@ +# # CurrencyAmountNullable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted currency value. | [optional] +**amount** | **float** | Plain amount. | [optional] +**currencyCode** | **string** | Currency code. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CurrentUser.md b/docs/Model/CurrentUser.md new file mode 100644 index 00000000..73d1d556 --- /dev/null +++ b/docs/Model/CurrentUser.md @@ -0,0 +1,23 @@ +# # CurrentUser + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The UUID of the owner. | [optional] +**uuid** | **string** | The UUID of the owner. | [optional] +**username** | **string** | The username of the owner. | [optional] +**displayName** | **string** | The full name of the owner. | [optional] +**status** | **int** | Status of the user. 0 = blocked; 1 = active. | [optional] +**mail** | **string** | The email address of the owner. | [optional] +**sshKeys** | [**\Upsun\Model\SshKey[]**](SshKey.md) | The list of user's public SSH keys. | [optional] +**hasKey** | **bool** | The indicator whether the user has a public ssh key on file or not. | [optional] +**projects** | [**\Upsun\Model\CurrentUserProjectsInner[]**](CurrentUserProjectsInner.md) | | [optional] +**sequence** | **int** | The sequential ID of the user. | [optional] +**roles** | **string[]** | | [optional] +**picture** | **string** | The URL of the user image. | [optional] +**tickets** | **object** | Number of support tickets by status. | [optional] +**trial** | **bool** | The indicator whether the user is in trial or not. | [optional] +**currentTrial** | [**\Upsun\Model\CurrentUserCurrentTrialInner[]**](CurrentUserCurrentTrialInner.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CurrentUserCurrentTrialInner.md b/docs/Model/CurrentUserCurrentTrialInner.md new file mode 100644 index 00000000..7baabeba --- /dev/null +++ b/docs/Model/CurrentUserCurrentTrialInner.md @@ -0,0 +1,12 @@ +# # CurrentUserCurrentTrialInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**created** | **\DateTime** | The ISO timestamp of the trial creation date time. | [optional] +**description** | **string** | The human readable trial description | [optional] +**spendRemaining** | **string** | Total spend amount of the voucher minus existing project costs for the existing billing cycle. | [optional] +**expiration** | **\DateTime** | Date the trial expires. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CurrentUserProjectsInner.md b/docs/Model/CurrentUserProjectsInner.md new file mode 100644 index 00000000..a198421e --- /dev/null +++ b/docs/Model/CurrentUserProjectsInner.md @@ -0,0 +1,28 @@ +# # CurrentUserProjectsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The unique ID string of the project. | [optional] +**name** | **string** | The name given to the project. Appears as the title in the user interface. | [optional] +**title** | **string** | The name given to the project. Appears as the title in the user interface. | [optional] +**cluster** | **string** | The machine name of the region where the project is located. Cannot be changed after project creation. | [optional] +**clusterLabel** | **string** | The human-readable name of the region where the project is located. | [optional] +**region** | **string** | The machine name of the region where the project is located. Cannot be changed after project creation. | [optional] +**regionLabel** | **string** | The human-readable name of the region where the project is located. | [optional] +**uri** | **string** | The URL for the project's user interface. | [optional] +**endpoint** | **string** | The project API endpoint for the project. | [optional] +**licenseId** | **int** | The ID of the subscription. | [optional] +**owner** | **string** | The UUID of the owner. | [optional] +**ownerInfo** | [**\Upsun\Model\OwnerInfo**](OwnerInfo.md) | | [optional] +**plan** | **string** | The plan type of the subscription. | [optional] +**subscriptionId** | **int** | The ID of the subscription. | [optional] +**status** | **string** | The status of the project. | [optional] +**vendor** | **string** | The machine name of the vendor the subscription belongs to. | [optional] +**vendorLabel** | **string** | The machine name of the vendor the subscription belongs to. | [optional] +**vendorWebsite** | **string** | The URL of the vendor the subscription belongs to. | [optional] +**vendorResources** | **string** | The link to the resources of the vendor the subscription belongs to. | [optional] +**createdAt** | **\DateTime** | The creation date of the subscription. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/CustomDomains.md b/docs/Model/CustomDomains.md new file mode 100644 index 00000000..bbe5f0f1 --- /dev/null +++ b/docs/Model/CustomDomains.md @@ -0,0 +1,10 @@ +# # CustomDomains + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, custom domains can be added to the project. | +**environmentsWithDomainsLimit** | **int** | Limit on the amount of non-production environments that can have domains set | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DataRetention.md b/docs/Model/DataRetention.md new file mode 100644 index 00000000..32b68ff9 --- /dev/null +++ b/docs/Model/DataRetention.md @@ -0,0 +1,9 @@ +# # DataRetention + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, data retention configuration can be modified. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DataRetentionConfigurationValue.md b/docs/Model/DataRetentionConfigurationValue.md new file mode 100644 index 00000000..f3001488 --- /dev/null +++ b/docs/Model/DataRetentionConfigurationValue.md @@ -0,0 +1,10 @@ +# # DataRetentionConfigurationValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**maxBackups** | **int** | The maximum number of backups per environment | +**defaultConfig** | [**\Upsun\Model\DefaultConfig**](DefaultConfig.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DataRetentionConfigurationValue1.md b/docs/Model/DataRetentionConfigurationValue1.md new file mode 100644 index 00000000..9b6e6ee1 --- /dev/null +++ b/docs/Model/DataRetentionConfigurationValue1.md @@ -0,0 +1,10 @@ +# # DataRetentionConfigurationValue1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**defaultConfig** | [**\Upsun\Model\DefaultConfig1**](DefaultConfig1.md) | | +**maxBackups** | **int** | The maximum number of backups per environment | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DateTimeFilter.md b/docs/Model/DateTimeFilter.md new file mode 100644 index 00000000..4ff38acc --- /dev/null +++ b/docs/Model/DateTimeFilter.md @@ -0,0 +1,15 @@ +# # DateTimeFilter + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**eq** | **string** | Equal | [optional] +**ne** | **string** | Not equal | [optional] +**between** | **string** | Between (comma-separated list) | [optional] +**gt** | **string** | Greater than | [optional] +**gte** | **string** | Greater than or equal | [optional] +**lt** | **string** | Less than | [optional] +**lte** | **string** | Less than or equal | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DedicatedDeploymentTarget.md b/docs/Model/DedicatedDeploymentTarget.md new file mode 100644 index 00000000..bc109913 --- /dev/null +++ b/docs/Model/DedicatedDeploymentTarget.md @@ -0,0 +1,22 @@ +# # DedicatedDeploymentTarget + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**deployHost** | **string** | The host to deploy to. | +**deployPort** | **int** | The port to deploy to. | +**sshHost** | **string** | The host to use to SSH to app containers. | +**hosts** | [**\Upsun\Model\HostsInner[]**](HostsInner.md) | The hosts of the deployment target. | +**autoMounts** | **bool** | Whether to take application mounts from the pushed data or the deployment target. | +**excludedMounts** | **string[]** | Directories that should not be mounted | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | +**autoCrons** | **bool** | Whether to take application crons from the pushed data or the deployment target. | +**autoNginx** | **bool** | Whether to take application crons from the pushed data or the deployment target. | +**maintenanceMode** | **bool** | Whether to perform deployments or not | +**guardrailsPhase** | **int** | which phase of guardrails are we in | +**id** | **string** | The identifier of DedicatedDeploymentTarget | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DedicatedDeploymentTargetCreateInput.md b/docs/Model/DedicatedDeploymentTargetCreateInput.md new file mode 100644 index 00000000..7fe12225 --- /dev/null +++ b/docs/Model/DedicatedDeploymentTargetCreateInput.md @@ -0,0 +1,11 @@ +# # DedicatedDeploymentTargetCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DedicatedDeploymentTargetPatch.md b/docs/Model/DedicatedDeploymentTargetPatch.md new file mode 100644 index 00000000..dbd22c73 --- /dev/null +++ b/docs/Model/DedicatedDeploymentTargetPatch.md @@ -0,0 +1,11 @@ +# # DedicatedDeploymentTargetPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DefaultConfig.md b/docs/Model/DefaultConfig.md new file mode 100644 index 00000000..0e7f14f1 --- /dev/null +++ b/docs/Model/DefaultConfig.md @@ -0,0 +1,10 @@ +# # DefaultConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**manualCount** | **int** | The number of manual backups to keep. | +**schedule** | [**\Upsun\Model\ScheduleInner[]**](ScheduleInner.md) | The backup schedule specification. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DefaultConfig1.md b/docs/Model/DefaultConfig1.md new file mode 100644 index 00000000..5aaec685 --- /dev/null +++ b/docs/Model/DefaultConfig1.md @@ -0,0 +1,10 @@ +# # DefaultConfig1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**manualCount** | **int** | The number of manual backups to keep. | [optional] +**schedule** | [**\Upsun\Model\ScheduleInner[]**](ScheduleInner.md) | The backup schedule specification. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DefaultResources.md b/docs/Model/DefaultResources.md new file mode 100644 index 00000000..eae7221f --- /dev/null +++ b/docs/Model/DefaultResources.md @@ -0,0 +1,13 @@ +# # DefaultResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | Cpu value | +**memory** | **int** | Memory in MB | +**cpuType** | **string** | resource type | +**disk** | **int** | Disk size in MB | +**profileSize** | **string** | The closest profile size that matches the resources | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Deployment.md b/docs/Model/Deployment.md new file mode 100644 index 00000000..a8ba69c2 --- /dev/null +++ b/docs/Model/Deployment.md @@ -0,0 +1,28 @@ +# # Deployment + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Deployment | +**clusterName** | **string** | The name of the cluster | +**projectInfo** | [**\Upsun\Model\ProjectInfo**](ProjectInfo.md) | | +**environmentInfo** | [**\Upsun\Model\EnvironmentInfo**](EnvironmentInfo.md) | | +**deploymentTarget** | **string** | The deployment target | +**vpn** | [**\Upsun\Model\VPNConfiguration**](VPNConfiguration.md) | | +**httpAccess** | [**\Upsun\Model\HttpAccessPermissions**](HttpAccessPermissions.md) | | +**enableSmtp** | **bool** | Whether to configure SMTP for this environment | +**restrictRobots** | **bool** | Whether to restrict robots for this environment | +**variables** | [**\Upsun\Model\EnvironmentVariablesInner[]**](EnvironmentVariablesInner.md) | The variables applying to this environment | +**access** | [**\Upsun\Model\AccessControlInner[]**](AccessControlInner.md) | Access control definition for this enviroment | +**subscription** | [**\Upsun\Model\Subscription1**](Subscription1.md) | | +**services** | [**array**](ServicesValue.md) | The services | +**routes** | [**array**](RoutesValue.md) | The routes | +**webapps** | [**array**](WebApplicationsValue.md) | The Web applications | +**workers** | [**array**](WorkersValue.md) | The workers | +**containerProfiles** | **array>** | The profiles of the containers | +**createdAt** | **\DateTime** | The creation date of the deployment | [optional] +**updatedAt** | **\DateTime** | The update date of the deployment | [optional] +**fingerprint** | **string** | The fingerprint of the deployment | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DeploymentHostsInner.md b/docs/Model/DeploymentHostsInner.md new file mode 100644 index 00000000..6ff3d744 --- /dev/null +++ b/docs/Model/DeploymentHostsInner.md @@ -0,0 +1,11 @@ +# # DeploymentHostsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of the host. | +**type** | **string** | The type of the deployment to this host. | +**services** | **string[]** | The services assigned to this host | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DeploymentState.md b/docs/Model/DeploymentState.md new file mode 100644 index 00000000..05271b1a --- /dev/null +++ b/docs/Model/DeploymentState.md @@ -0,0 +1,13 @@ +# # DeploymentState + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**lastDeploymentSuccessful** | **bool** | Whether the last deployment was successful | +**lastDeploymentAt** | **\DateTime** | Datetime of the last deployment | +**lastAutoscaleUpAt** | **\DateTime** | Datetime of the last autoscale up deployment | +**lastAutoscaleDownAt** | **\DateTime** | Datetime of the last autoscale down deployment | +**crons** | [**\Upsun\Model\CronsDeploymentState**](CronsDeploymentState.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DeploymentTarget.md b/docs/Model/DeploymentTarget.md new file mode 100644 index 00000000..ca2f1d32 --- /dev/null +++ b/docs/Model/DeploymentTarget.md @@ -0,0 +1,28 @@ +# # DeploymentTarget + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**deployHost** | **string** | The host to deploy to. | +**deployPort** | **int** | The port to deploy to. | +**sshHost** | **string** | The host to use to SSH to app containers. | +**hosts** | [**\Upsun\Model\HostsInner[]**](HostsInner.md) | The hosts of the deployment target. | +**autoMounts** | **bool** | Whether to take application mounts from the pushed data or the deployment target. | +**excludedMounts** | **string[]** | Directories that should not be mounted | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | +**autoCrons** | **bool** | Whether to take application crons from the pushed data or the deployment target. | +**autoNginx** | **bool** | Whether to take application crons from the pushed data or the deployment target. | +**maintenanceMode** | **bool** | Whether to perform deployments or not | +**guardrailsPhase** | **int** | which phase of guardrails are we in | +**docroots** | [**array**](DocrootsValue.md) | Mapping of clusters to Enterprise applications | +**siteUrls** | **object** | | +**sshHosts** | **string[]** | List of SSH Hosts. | +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | +**storageType** | **string** | The storage type. | +**id** | **string** | The identifier of FoundationDeploymentTarget | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DeploymentTargetCreateInput.md b/docs/Model/DeploymentTargetCreateInput.md new file mode 100644 index 00000000..78f560ba --- /dev/null +++ b/docs/Model/DeploymentTargetCreateInput.md @@ -0,0 +1,16 @@ +# # DeploymentTargetCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | [optional] +**siteUrls** | **object** | | [optional] +**sshHosts** | **string[]** | List of SSH Hosts. | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] +**hosts** | [**\Upsun\Model\DeploymentHostsInner[]**](DeploymentHostsInner.md) | The hosts of the deployment target. | [optional] +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DeploymentTargetPatch.md b/docs/Model/DeploymentTargetPatch.md new file mode 100644 index 00000000..1fd1d7b7 --- /dev/null +++ b/docs/Model/DeploymentTargetPatch.md @@ -0,0 +1,16 @@ +# # DeploymentTargetPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**enforcedMounts** | **object** | Mounts which are always injected into pushed (e.g. enforce /var/log to be a local mount). | [optional] +**siteUrls** | **object** | | [optional] +**sshHosts** | **string[]** | List of SSH Hosts. | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] +**hosts** | [**\Upsun\Model\DeploymentHostsInner[]**](DeploymentHostsInner.md) | The hosts of the deployment target. | [optional] +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DevelopmentResources.md b/docs/Model/DevelopmentResources.md new file mode 100644 index 00000000..a6a0b0d9 --- /dev/null +++ b/docs/Model/DevelopmentResources.md @@ -0,0 +1,12 @@ +# # DevelopmentResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**legacyDevelopment** | **bool** | Enable legacy development sizing for this environment type. | +**maxCpu** | **float** | Maximum number of allocated CPU units. | +**maxMemory** | **int** | Maximum amount of allocated RAM. | +**maxEnvironments** | **int** | Maximum number of environments | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Discount.md b/docs/Model/Discount.md new file mode 100644 index 00000000..9247faab --- /dev/null +++ b/docs/Model/Discount.md @@ -0,0 +1,19 @@ +# # Discount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **int** | The ID of the organization discount. | [optional] +**organizationId** | **string** | The ULID of the organization the discount applies to. | [optional] +**type** | **string** | The machine name of the discount type. | [optional] +**typeLabel** | **string** | The label of the discount type. | [optional] +**status** | **string** | The status of the discount. | [optional] +**commitment** | [**\Upsun\Model\DiscountCommitment**](DiscountCommitment.md) | | [optional] +**totalMonths** | **int** | The contract length in months (if applicable). | [optional] +**discount** | [**\Upsun\Model\DiscountDiscount**](DiscountDiscount.md) | | [optional] +**config** | **object** | The discount type specific configuration. | [optional] +**startAt** | **\DateTime** | The start time of the discount period. | [optional] +**endAt** | **\DateTime** | The end time of the discount period (if applicable). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DiscountCommitment.md b/docs/Model/DiscountCommitment.md new file mode 100644 index 00000000..f2df333d --- /dev/null +++ b/docs/Model/DiscountCommitment.md @@ -0,0 +1,11 @@ +# # DiscountCommitment + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**months** | **int** | Commitment period length in months. | [optional] +**amount** | [**\Upsun\Model\DiscountCommitmentAmount**](DiscountCommitmentAmount.md) | | [optional] +**net** | [**\Upsun\Model\DiscountCommitmentNet**](DiscountCommitmentNet.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DiscountCommitmentAmount.md b/docs/Model/DiscountCommitmentAmount.md new file mode 100644 index 00000000..96537e42 --- /dev/null +++ b/docs/Model/DiscountCommitmentAmount.md @@ -0,0 +1,11 @@ +# # DiscountCommitmentAmount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**monthly** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] +**commitmentPeriod** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] +**contractTotal** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DiscountCommitmentNet.md b/docs/Model/DiscountCommitmentNet.md new file mode 100644 index 00000000..d17f903e --- /dev/null +++ b/docs/Model/DiscountCommitmentNet.md @@ -0,0 +1,11 @@ +# # DiscountCommitmentNet + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**monthly** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] +**commitmentPeriod** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] +**contractTotal** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DiscountDiscount.md b/docs/Model/DiscountDiscount.md new file mode 100644 index 00000000..cb633783 --- /dev/null +++ b/docs/Model/DiscountDiscount.md @@ -0,0 +1,11 @@ +# # DiscountDiscount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**monthly** | [**\Upsun\Model\CurrencyAmount**](CurrencyAmount.md) | | [optional] +**commitmentPeriod** | [**\Upsun\Model\CurrencyAmountNullable**](CurrencyAmountNullable.md) | | [optional] +**contractTotal** | [**\Upsun\Model\CurrencyAmountNullable**](CurrencyAmountNullable.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DiskResources.md b/docs/Model/DiskResources.md new file mode 100644 index 00000000..c812469f --- /dev/null +++ b/docs/Model/DiskResources.md @@ -0,0 +1,11 @@ +# # DiskResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**temporary** | **int** | | +**instance** | **int** | | +**storage** | **int** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DocrootsValue.md b/docs/Model/DocrootsValue.md new file mode 100644 index 00000000..db781f72 --- /dev/null +++ b/docs/Model/DocrootsValue.md @@ -0,0 +1,10 @@ +# # DocrootsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**activeDocroot** | **string** | The enterprise docroot, that is associated with this application/cluster. | +**docrootVersions** | **string[]** | Versions of the enterprise docroot. When a new environment version is created the active_docroot is updated from these values. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Domain.md b/docs/Model/Domain.md new file mode 100644 index 00000000..e9e7d365 --- /dev/null +++ b/docs/Model/Domain.md @@ -0,0 +1,18 @@ +# # Domain + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | Domain type | +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**id** | **string** | The identifier of ReplacementDomainStorage | [optional] +**project** | **string** | | [optional] +**registeredName** | **string** | | [optional] +**isDefault** | **bool** | Is this domain default | [optional] +**replacementFor** | **string** | Prod domain which will be replaced by this domain. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DomainCreateInput.md b/docs/Model/DomainCreateInput.md new file mode 100644 index 00000000..d4a96084 --- /dev/null +++ b/docs/Model/DomainCreateInput.md @@ -0,0 +1,12 @@ +# # DomainCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isDefault** | **bool** | Is this domain default | [optional] +**replacementFor** | **string** | Prod domain which will be replaced by this domain. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/DomainPatch.md b/docs/Model/DomainPatch.md new file mode 100644 index 00000000..86faf28b --- /dev/null +++ b/docs/Model/DomainPatch.md @@ -0,0 +1,10 @@ +# # DomainPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isDefault** | **bool** | Is this domain default | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EmailIntegration.md b/docs/Model/EmailIntegration.md new file mode 100644 index 00000000..13c34776 --- /dev/null +++ b/docs/Model/EmailIntegration.md @@ -0,0 +1,14 @@ +# # EmailIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fromAddress** | **string** | The email address to use | +**recipients** | **string[]** | Recipients of the email | +**id** | **string** | The identifier of EmailIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EmailIntegrationCreateInput.md b/docs/Model/EmailIntegrationCreateInput.md new file mode 100644 index 00000000..cc40c493 --- /dev/null +++ b/docs/Model/EmailIntegrationCreateInput.md @@ -0,0 +1,11 @@ +# # EmailIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**recipients** | **string[]** | Recipients of the email | +**fromAddress** | **string** | The email address to use | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EmailIntegrationPatch.md b/docs/Model/EmailIntegrationPatch.md new file mode 100644 index 00000000..892a0043 --- /dev/null +++ b/docs/Model/EmailIntegrationPatch.md @@ -0,0 +1,11 @@ +# # EmailIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**recipients** | **string[]** | Recipients of the email | +**fromAddress** | **string** | The email address to use | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnterpriseDeploymentTarget.md b/docs/Model/EnterpriseDeploymentTarget.md new file mode 100644 index 00000000..811e5dde --- /dev/null +++ b/docs/Model/EnterpriseDeploymentTarget.md @@ -0,0 +1,17 @@ +# # EnterpriseDeploymentTarget + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**deployHost** | **string** | The host to deploy to. | +**docroots** | [**array**](DocrootsValue.md) | Mapping of clusters to Enterprise applications | +**siteUrls** | **object** | | +**sshHosts** | **string[]** | List of SSH Hosts. | +**maintenanceMode** | **bool** | Whether to perform deployments or not | +**id** | **string** | The identifier of EnterpriseDeploymentTarget | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnterpriseDeploymentTargetCreateInput.md b/docs/Model/EnterpriseDeploymentTargetCreateInput.md new file mode 100644 index 00000000..1b1958c6 --- /dev/null +++ b/docs/Model/EnterpriseDeploymentTargetCreateInput.md @@ -0,0 +1,13 @@ +# # EnterpriseDeploymentTargetCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**siteUrls** | **object** | | [optional] +**sshHosts** | **string[]** | List of SSH Hosts. | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnterpriseDeploymentTargetPatch.md b/docs/Model/EnterpriseDeploymentTargetPatch.md new file mode 100644 index 00000000..f350c364 --- /dev/null +++ b/docs/Model/EnterpriseDeploymentTargetPatch.md @@ -0,0 +1,13 @@ +# # EnterpriseDeploymentTargetPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**siteUrls** | **object** | | [optional] +**sshHosts** | **string[]** | List of SSH Hosts. | [optional] +**enterpriseEnvironmentsMapping** | **object** | Mapping of clusters to Enterprise applications | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Environment.md b/docs/Model/Environment.md new file mode 100644 index 00000000..cd4740a4 --- /dev/null +++ b/docs/Model/Environment.md @@ -0,0 +1,45 @@ +# # Environment + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Environment | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**name** | **string** | The name of the environment | +**machineName** | **string** | The machine name for the environment | +**title** | **string** | The title of the environment | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | The type of environment (`production`, `staging` or `development`), if not provided, a default will be calculated | +**parent** | **string** | The name of the parent environment | +**defaultDomain** | **string** | The default domain | +**hasDomains** | **bool** | Whether the environment has domains | +**cloneParentOnCreate** | **bool** | Clone data when creating that environment | +**deploymentTarget** | **string** | Deployment target of the environment | +**isPr** | **bool** | Is this environment a pull request / merge request | +**hasRemote** | **bool** | Does this environment have a remote repository | +**status** | **string** | The status of the environment | +**httpAccess** | [**\Upsun\Model\HttpAccessPermissions1**](HttpAccessPermissions1.md) | | +**enableSmtp** | **bool** | Whether to configure SMTP for this environment | +**restrictRobots** | **bool** | Whether to restrict robots for this environment | +**edgeHostname** | **string** | The hostname to use as the CNAME | +**deploymentState** | [**\Upsun\Model\DeploymentState**](DeploymentState.md) | | +**sizing** | [**\Upsun\Model\Sizing**](Sizing.md) | | +**resourcesOverrides** | [**array**](ResourcesOverridesValue.md) | Resources overrides | +**maxInstanceCount** | **int** | Max number of instances for this environment | +**lastActiveAt** | **\DateTime** | Last activity date | +**lastBackupAt** | **\DateTime** | Last backup date | +**project** | **string** | The project the environment belongs to | +**isMain** | **bool** | Is this environment the main environment | +**isDirty** | **bool** | Is there any pending activity on this environment | +**hasStagedActivities** | **bool** | Is there any staged activity on this environment | +**canRollingDeploy** | **bool** | If the environment has rolling deployments ready for use | +**supportsRollingDeployments** | **bool** | If the environment supports rolling deployments | +**hasCode** | **bool** | Does this environment have code | +**headCommit** | **string** | The SHA of the head commit for this environment | +**mergeInfo** | [**\Upsun\Model\MergeInfo**](MergeInfo.md) | | +**hasDeployment** | **bool** | Whether this environment had a successful deployment | +**supportsRestrictRobots** | **bool** | Does this environment support configuring restrict_robots | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentActivateInput.md b/docs/Model/EnvironmentActivateInput.md new file mode 100644 index 00000000..bfdd2962 --- /dev/null +++ b/docs/Model/EnvironmentActivateInput.md @@ -0,0 +1,9 @@ +# # EnvironmentActivateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\Resources2**](Resources2.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentBackupInput.md b/docs/Model/EnvironmentBackupInput.md new file mode 100644 index 00000000..235ba84a --- /dev/null +++ b/docs/Model/EnvironmentBackupInput.md @@ -0,0 +1,9 @@ +# # EnvironmentBackupInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**safe** | **bool** | Take a safe or a live backup | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentBranchInput.md b/docs/Model/EnvironmentBranchInput.md new file mode 100644 index 00000000..97544bf7 --- /dev/null +++ b/docs/Model/EnvironmentBranchInput.md @@ -0,0 +1,13 @@ +# # EnvironmentBranchInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | | +**name** | **string** | | +**cloneParent** | **bool** | Clone data from the parent environment | +**type** | **string** | The type of environment (`staging` or `development`) | +**resources** | [**\Upsun\Model\Resources3**](Resources3.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentDeployInput.md b/docs/Model/EnvironmentDeployInput.md new file mode 100644 index 00000000..194ae505 --- /dev/null +++ b/docs/Model/EnvironmentDeployInput.md @@ -0,0 +1,9 @@ +# # EnvironmentDeployInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**strategy** | **string** | The deployment strategy (`rolling` or `stopstart`) | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentInfo.md b/docs/Model/EnvironmentInfo.md new file mode 100644 index 00000000..6d0cc56e --- /dev/null +++ b/docs/Model/EnvironmentInfo.md @@ -0,0 +1,17 @@ +# # EnvironmentInfo + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | The machine name of the environment | +**status** | **string** | The enviroment status | +**isMain** | **bool** | Is this environment the main environment | +**isProduction** | **bool** | Is this environment a production environment | +**constraints** | **object** | Constraints of the environment's deployment | +**reference** | **string** | The reference in Git for this environment | +**machineName** | **string** | The machine name of the environment | +**environmentType** | **string** | The type of environment (Production, Staging or Development) | +**links** | **object** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentInitializeInput.md b/docs/Model/EnvironmentInitializeInput.md new file mode 100644 index 00000000..a7776e54 --- /dev/null +++ b/docs/Model/EnvironmentInitializeInput.md @@ -0,0 +1,13 @@ +# # EnvironmentInitializeInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**profile** | **string** | Name of the profile to show in the UI | +**repository** | **string** | Repository to clone from | +**config** | **string** | Repository to clone the configuration files from | +**files** | [**\Upsun\Model\FilesInner[]**](FilesInner.md) | A list of files to add to the repository during initialization | +**resources** | [**\Upsun\Model\Resources4**](Resources4.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentMergeInput.md b/docs/Model/EnvironmentMergeInput.md new file mode 100644 index 00000000..6a022a67 --- /dev/null +++ b/docs/Model/EnvironmentMergeInput.md @@ -0,0 +1,9 @@ +# # EnvironmentMergeInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\Resources5**](Resources5.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentOperationInput.md b/docs/Model/EnvironmentOperationInput.md new file mode 100644 index 00000000..2356c5cb --- /dev/null +++ b/docs/Model/EnvironmentOperationInput.md @@ -0,0 +1,11 @@ +# # EnvironmentOperationInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**service** | **string** | The name of the application or worker to run the operation on | +**operation** | **string** | The name of the operation | +**parameters** | **string[]** | The parameters to run the operation with | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentPatch.md b/docs/Model/EnvironmentPatch.md new file mode 100644 index 00000000..058862f0 --- /dev/null +++ b/docs/Model/EnvironmentPatch.md @@ -0,0 +1,17 @@ +# # EnvironmentPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | The name of the environment | [optional] +**title** | **string** | The title of the environment | [optional] +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**type** | **string** | The type of environment (`production`, `staging` or `development`), if not provided, a default will be calculated | [optional] +**parent** | **string** | The name of the parent environment | [optional] +**cloneParentOnCreate** | **bool** | Clone data when creating that environment | [optional] +**httpAccess** | [**\Upsun\Model\HttpAccessPermissions2**](HttpAccessPermissions2.md) | | [optional] +**enableSmtp** | **bool** | Whether to configure SMTP for this environment | [optional] +**restrictRobots** | **bool** | Whether to restrict robots for this environment | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentRestoreInput.md b/docs/Model/EnvironmentRestoreInput.md new file mode 100644 index 00000000..6d4d1233 --- /dev/null +++ b/docs/Model/EnvironmentRestoreInput.md @@ -0,0 +1,13 @@ +# # EnvironmentRestoreInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**environmentName** | **string** | | +**branchFrom** | **string** | | +**restoreCode** | **bool** | Whether we should restore the code or only the data | +**restoreResources** | **bool** | Whether we should restore resources configuration from the backup | +**resources** | [**\Upsun\Model\Resources6**](Resources6.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentSourceOperation.md b/docs/Model/EnvironmentSourceOperation.md new file mode 100644 index 00000000..fa3b3b8b --- /dev/null +++ b/docs/Model/EnvironmentSourceOperation.md @@ -0,0 +1,12 @@ +# # EnvironmentSourceOperation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of EnvironmentSourceOperation | +**app** | **string** | The name of the application | +**operation** | **string** | The name of the source operation | +**command** | **string** | The command that will be triggered | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentSourceOperationInput.md b/docs/Model/EnvironmentSourceOperationInput.md new file mode 100644 index 00000000..a687a1c6 --- /dev/null +++ b/docs/Model/EnvironmentSourceOperationInput.md @@ -0,0 +1,10 @@ +# # EnvironmentSourceOperationInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**operation** | **string** | The name of the operation to execute | +**variables** | **array>** | The variables of the application. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentSynchronizeInput.md b/docs/Model/EnvironmentSynchronizeInput.md new file mode 100644 index 00000000..ba570e46 --- /dev/null +++ b/docs/Model/EnvironmentSynchronizeInput.md @@ -0,0 +1,12 @@ +# # EnvironmentSynchronizeInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**synchronizeCode** | **bool** | Synchronize code? | +**rebase** | **bool** | Synchronize code by rebasing instead of merging | +**synchronizeData** | **bool** | Synchronize data? | +**synchronizeResources** | **bool** | Synchronize resources? | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentType.md b/docs/Model/EnvironmentType.md new file mode 100644 index 00000000..13f12404 --- /dev/null +++ b/docs/Model/EnvironmentType.md @@ -0,0 +1,10 @@ +# # EnvironmentType + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of EnvironmentType | +**attributes** | **array** | Arbitrary attributes attached to this resource | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentVariable.md b/docs/Model/EnvironmentVariable.md new file mode 100644 index 00000000..a728ad78 --- /dev/null +++ b/docs/Model/EnvironmentVariable.md @@ -0,0 +1,24 @@ +# # EnvironmentVariable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of EnvironmentVariable | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**name** | **string** | Name of the variable | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**isJson** | **bool** | The variable is a JSON string | +**isSensitive** | **bool** | The variable is sensitive | +**visibleBuild** | **bool** | The variable is visible during build | +**visibleRuntime** | **bool** | The variable is visible at runtime | +**applicationScope** | **string[]** | Applications that have access to this variable | +**project** | **string** | The name of the project | +**environment** | **string** | The name of the environment | +**inherited** | **bool** | The variable is inherited from a parent environment | +**isEnabled** | **bool** | The variable is enabled on this environment | +**isInheritable** | **bool** | The variable is inheritable to child environments | +**value** | **string** | Value of the variable | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentVariableCreateInput.md b/docs/Model/EnvironmentVariableCreateInput.md new file mode 100644 index 00000000..3246f209 --- /dev/null +++ b/docs/Model/EnvironmentVariableCreateInput.md @@ -0,0 +1,18 @@ +# # EnvironmentVariableCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | Name of the variable | +**value** | **string** | Value of the variable | +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isJson** | **bool** | The variable is a JSON string | [optional] +**isSensitive** | **bool** | The variable is sensitive | [optional] +**visibleBuild** | **bool** | The variable is visible during build | [optional] +**visibleRuntime** | **bool** | The variable is visible at runtime | [optional] +**applicationScope** | **string[]** | Applications that have access to this variable | [optional] +**isEnabled** | **bool** | The variable is enabled on this environment | [optional] +**isInheritable** | **bool** | The variable is inheritable to child environments | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentVariablePatch.md b/docs/Model/EnvironmentVariablePatch.md new file mode 100644 index 00000000..08dd8c22 --- /dev/null +++ b/docs/Model/EnvironmentVariablePatch.md @@ -0,0 +1,18 @@ +# # EnvironmentVariablePatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | Name of the variable | [optional] +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**value** | **string** | Value of the variable | [optional] +**isJson** | **bool** | The variable is a JSON string | [optional] +**isSensitive** | **bool** | The variable is sensitive | [optional] +**visibleBuild** | **bool** | The variable is visible during build | [optional] +**visibleRuntime** | **bool** | The variable is visible at runtime | [optional] +**applicationScope** | **string[]** | Applications that have access to this variable | [optional] +**isEnabled** | **bool** | The variable is enabled on this environment | [optional] +**isInheritable** | **bool** | The variable is inheritable to child environments | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentVariablesInner.md b/docs/Model/EnvironmentVariablesInner.md new file mode 100644 index 00000000..ef4e64e5 --- /dev/null +++ b/docs/Model/EnvironmentVariablesInner.md @@ -0,0 +1,14 @@ +# # EnvironmentVariablesInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | Name of the variable | +**isSensitive** | **bool** | The variable is sensitive | +**isJson** | **bool** | The variable is a JSON string | +**visibleBuild** | **bool** | The variable is visible during build | +**visibleRuntime** | **bool** | The variable is visible at runtime | +**value** | **string** | Value of the variable | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EnvironmentsCredentialsValue.md b/docs/Model/EnvironmentsCredentialsValue.md new file mode 100644 index 00000000..5a0fbae0 --- /dev/null +++ b/docs/Model/EnvironmentsCredentialsValue.md @@ -0,0 +1,10 @@ +# # EnvironmentsCredentialsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**serverUuid** | **string** | The environment server UUID | +**serverToken** | **string** | Environment server token | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Error.md b/docs/Model/Error.md new file mode 100644 index 00000000..18200a63 --- /dev/null +++ b/docs/Model/Error.md @@ -0,0 +1,13 @@ +# # Error + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status** | **string** | | [optional] +**message** | **string** | | [optional] +**code** | **float** | | [optional] +**detail** | **object** | | [optional] +**title** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/EstimationObject.md b/docs/Model/EstimationObject.md new file mode 100644 index 00000000..87da4607 --- /dev/null +++ b/docs/Model/EstimationObject.md @@ -0,0 +1,14 @@ +# # EstimationObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**plan** | **string** | The monthly price of the plan. | [optional] +**userLicenses** | **string** | The monthly price of the user licenses. | [optional] +**environments** | **string** | The monthly price of the environments. | [optional] +**storage** | **string** | The monthly price of the storage. | [optional] +**total** | **string** | The total monthly price. | [optional] +**options** | **object** | The unit prices of the options. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FastlyCDN.md b/docs/Model/FastlyCDN.md new file mode 100644 index 00000000..523c76bb --- /dev/null +++ b/docs/Model/FastlyCDN.md @@ -0,0 +1,10 @@ +# # FastlyCDN + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FastlyIntegration.md b/docs/Model/FastlyIntegration.md new file mode 100644 index 00000000..65dcf013 --- /dev/null +++ b/docs/Model/FastlyIntegration.md @@ -0,0 +1,18 @@ +# # FastlyIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**events** | **string[]** | Events to execute the hook on | +**environments** | **string[]** | The environments to execute the hook on | +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | +**states** | **string[]** | Events to execute the hook on | +**result** | **string** | Result to execute the hook on | +**serviceId** | **string** | | +**id** | **string** | The identifier of FastlyIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FastlyIntegrationCreateInput.md b/docs/Model/FastlyIntegrationCreateInput.md new file mode 100644 index 00000000..8baefe31 --- /dev/null +++ b/docs/Model/FastlyIntegrationCreateInput.md @@ -0,0 +1,16 @@ +# # FastlyIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | Fastly API Token | +**serviceId** | **string** | | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FastlyIntegrationPatch.md b/docs/Model/FastlyIntegrationPatch.md new file mode 100644 index 00000000..e80ddca2 --- /dev/null +++ b/docs/Model/FastlyIntegrationPatch.md @@ -0,0 +1,16 @@ +# # FastlyIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | Fastly API Token | +**serviceId** | **string** | | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FilesInner.md b/docs/Model/FilesInner.md new file mode 100644 index 00000000..81eac0e7 --- /dev/null +++ b/docs/Model/FilesInner.md @@ -0,0 +1,11 @@ +# # FilesInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**path** | **string** | The path to the file. | +**mode** | **int** | The octal value of the file protection mode. | +**contents** | **string** | The contents of the file (base64 encoded). | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Firewall.md b/docs/Model/Firewall.md new file mode 100644 index 00000000..04660ae9 --- /dev/null +++ b/docs/Model/Firewall.md @@ -0,0 +1,9 @@ +# # Firewall + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**outbound** | [**\Upsun\Model\OutboundFirewallRestrictionsInner[]**](OutboundFirewallRestrictionsInner.md) | Outbound firewall restrictions | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FoundationDeploymentTarget.md b/docs/Model/FoundationDeploymentTarget.md new file mode 100644 index 00000000..d4fca733 --- /dev/null +++ b/docs/Model/FoundationDeploymentTarget.md @@ -0,0 +1,14 @@ +# # FoundationDeploymentTarget + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**hosts** | [**\Upsun\Model\HostsInner[]**](HostsInner.md) | The hosts of the deployment target. | +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | +**storageType** | **string** | The storage type. | +**id** | **string** | The identifier of FoundationDeploymentTarget | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FoundationDeploymentTargetCreateInput.md b/docs/Model/FoundationDeploymentTargetCreateInput.md new file mode 100644 index 00000000..f1d5c4a4 --- /dev/null +++ b/docs/Model/FoundationDeploymentTargetCreateInput.md @@ -0,0 +1,12 @@ +# # FoundationDeploymentTargetCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**hosts** | [**\Upsun\Model\DeploymentHostsInner[]**](DeploymentHostsInner.md) | The hosts of the deployment target. | [optional] +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/FoundationDeploymentTargetPatch.md b/docs/Model/FoundationDeploymentTargetPatch.md new file mode 100644 index 00000000..7ed54fe6 --- /dev/null +++ b/docs/Model/FoundationDeploymentTargetPatch.md @@ -0,0 +1,12 @@ +# # FoundationDeploymentTargetPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of the deployment target. | +**name** | **string** | The name of the deployment target. | +**hosts** | [**\Upsun\Model\DeploymentHostsInner[]**](DeploymentHostsInner.md) | The hosts of the deployment target. | [optional] +**useDedicatedGrid** | **bool** | When true, the deployment will be pinned to Grid hosts dedicated to the environment using this deployment target. Dedicated Grid hosts must be created prior to deploying the environment. The constraints that will be set are as follows: * `cluster_type` is set to `environment-custom`. * `cluster` is set to the environment's cluster name. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetAddress200Response.md b/docs/Model/GetAddress200Response.md new file mode 100644 index 00000000..da315e5f --- /dev/null +++ b/docs/Model/GetAddress200Response.md @@ -0,0 +1,19 @@ +# # GetAddress200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**country** | **string** | Two-letter country codes are used to represent countries and states | [optional] +**nameLine** | **string** | The full name of the user | [optional] +**premise** | **string** | Premise (i.e. Apt, Suite, Bldg.) | [optional] +**subPremise** | **string** | Sub Premise (i.e. Suite, Apartment, Floor, Unknown. | [optional] +**thoroughfare** | **string** | The address of the user | [optional] +**administrativeArea** | **string** | The administrative area of the user address | [optional] +**subAdministrativeArea** | **string** | The sub-administrative area of the user address | [optional] +**locality** | **string** | The locality of the user address | [optional] +**dependentLocality** | **string** | The dependant_locality area of the user address | [optional] +**postalCode** | **string** | The postal code area of the user address | [optional] +**metadata** | [**\Upsun\Model\AddressMetadataMetadata**](AddressMetadataMetadata.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetCurrentUserVerificationStatus200Response.md b/docs/Model/GetCurrentUserVerificationStatus200Response.md new file mode 100644 index 00000000..d758676d --- /dev/null +++ b/docs/Model/GetCurrentUserVerificationStatus200Response.md @@ -0,0 +1,9 @@ +# # GetCurrentUserVerificationStatus200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**verifyPhone** | **bool** | Does this user need to verify their phone number for project creation. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetCurrentUserVerificationStatusFull200Response.md b/docs/Model/GetCurrentUserVerificationStatusFull200Response.md new file mode 100644 index 00000000..97157a04 --- /dev/null +++ b/docs/Model/GetCurrentUserVerificationStatusFull200Response.md @@ -0,0 +1,10 @@ +# # GetCurrentUserVerificationStatusFull200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**state** | **bool** | Does this user need verification for project creation. | [optional] +**type** | **string** | What type of verification is needed (phone or ticket) | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetOrgPrepaymentInfo200Response.md b/docs/Model/GetOrgPrepaymentInfo200Response.md new file mode 100644 index 00000000..9f3e524b --- /dev/null +++ b/docs/Model/GetOrgPrepaymentInfo200Response.md @@ -0,0 +1,10 @@ +# # GetOrgPrepaymentInfo200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**prepayment** | [**\Upsun\Model\PrepaymentObject**](PrepaymentObject.md) | | [optional] +**links** | [**\Upsun\Model\GetOrgPrepaymentInfo200ResponseLinks**](GetOrgPrepaymentInfo200ResponseLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetOrgPrepaymentInfo200ResponseLinks.md b/docs/Model/GetOrgPrepaymentInfo200ResponseLinks.md new file mode 100644 index 00000000..7a368a4f --- /dev/null +++ b/docs/Model/GetOrgPrepaymentInfo200ResponseLinks.md @@ -0,0 +1,10 @@ +# # GetOrgPrepaymentInfo200ResponseLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\GetOrgPrepaymentInfo200ResponseLinksSelf**](GetOrgPrepaymentInfo200ResponseLinksSelf.md) | | [optional] +**transactions** | [**\Upsun\Model\GetOrgPrepaymentInfo200ResponseLinksTransactions**](GetOrgPrepaymentInfo200ResponseLinksTransactions.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.md b/docs/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.md new file mode 100644 index 00000000..e71cc48c --- /dev/null +++ b/docs/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.md @@ -0,0 +1,9 @@ +# # GetOrgPrepaymentInfo200ResponseLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.md b/docs/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.md new file mode 100644 index 00000000..adc0287d --- /dev/null +++ b/docs/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.md @@ -0,0 +1,9 @@ +# # GetOrgPrepaymentInfo200ResponseLinksTransactions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetSubscriptionUsageAlerts200Response.md b/docs/Model/GetSubscriptionUsageAlerts200Response.md new file mode 100644 index 00000000..00ecca66 --- /dev/null +++ b/docs/Model/GetSubscriptionUsageAlerts200Response.md @@ -0,0 +1,10 @@ +# # GetSubscriptionUsageAlerts200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**current** | [**\Upsun\Model\UsageAlert[]**](UsageAlert.md) | The list of currently set usage alerts. | [optional] +**available** | [**\Upsun\Model\UsageAlert[]**](UsageAlert.md) | The list of available usage alerts. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTotpEnrollment200Response.md b/docs/Model/GetTotpEnrollment200Response.md new file mode 100644 index 00000000..63d37c0f --- /dev/null +++ b/docs/Model/GetTotpEnrollment200Response.md @@ -0,0 +1,12 @@ +# # GetTotpEnrollment200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**issuer** | **string** | | [optional] +**accountName** | **string** | Account name for the enrollment. | [optional] +**secret** | **string** | The secret seed for the enrollment | [optional] +**qrCode** | **string** | Data URI of a PNG QR code image for the enrollment. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200Response.md b/docs/Model/GetTypeAllowance200Response.md new file mode 100644 index 00000000..c17f6af3 --- /dev/null +++ b/docs/Model/GetTypeAllowance200Response.md @@ -0,0 +1,9 @@ +# # GetTypeAllowance200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**currencies** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrencies**](GetTypeAllowance200ResponseCurrencies.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrencies.md b/docs/Model/GetTypeAllowance200ResponseCurrencies.md new file mode 100644 index 00000000..a120446a --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrencies.md @@ -0,0 +1,13 @@ +# # GetTypeAllowance200ResponseCurrencies + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**eUR** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrenciesEUR**](GetTypeAllowance200ResponseCurrenciesEUR.md) | | [optional] +**uSD** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrenciesUSD**](GetTypeAllowance200ResponseCurrenciesUSD.md) | | [optional] +**gBP** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrenciesGBP**](GetTypeAllowance200ResponseCurrenciesGBP.md) | | [optional] +**aUD** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrenciesAUD**](GetTypeAllowance200ResponseCurrenciesAUD.md) | | [optional] +**cAD** | [**\Upsun\Model\GetTypeAllowance200ResponseCurrenciesCAD**](GetTypeAllowance200ResponseCurrenciesCAD.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrenciesAUD.md b/docs/Model/GetTypeAllowance200ResponseCurrenciesAUD.md new file mode 100644 index 00000000..37988c64 --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrenciesAUD.md @@ -0,0 +1,12 @@ +# # GetTypeAllowance200ResponseCurrenciesAUD + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The discount amount formatted. | [optional] +**amount** | **float** | The discount amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrenciesCAD.md b/docs/Model/GetTypeAllowance200ResponseCurrenciesCAD.md new file mode 100644 index 00000000..d0c55615 --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrenciesCAD.md @@ -0,0 +1,12 @@ +# # GetTypeAllowance200ResponseCurrenciesCAD + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The discount amount formatted. | [optional] +**amount** | **float** | The discount amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrenciesEUR.md b/docs/Model/GetTypeAllowance200ResponseCurrenciesEUR.md new file mode 100644 index 00000000..efe13347 --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrenciesEUR.md @@ -0,0 +1,12 @@ +# # GetTypeAllowance200ResponseCurrenciesEUR + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The discount amount formatted. | [optional] +**amount** | **float** | The discount amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrenciesGBP.md b/docs/Model/GetTypeAllowance200ResponseCurrenciesGBP.md new file mode 100644 index 00000000..1289f3cb --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrenciesGBP.md @@ -0,0 +1,12 @@ +# # GetTypeAllowance200ResponseCurrenciesGBP + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The discount amount formatted. | [optional] +**amount** | **float** | The discount amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetTypeAllowance200ResponseCurrenciesUSD.md b/docs/Model/GetTypeAllowance200ResponseCurrenciesUSD.md new file mode 100644 index 00000000..7a7b1cbe --- /dev/null +++ b/docs/Model/GetTypeAllowance200ResponseCurrenciesUSD.md @@ -0,0 +1,12 @@ +# # GetTypeAllowance200ResponseCurrenciesUSD + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The discount amount formatted. | [optional] +**amount** | **float** | The discount amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GetUsageAlerts200Response.md b/docs/Model/GetUsageAlerts200Response.md new file mode 100644 index 00000000..8a4c9f5f --- /dev/null +++ b/docs/Model/GetUsageAlerts200Response.md @@ -0,0 +1,10 @@ +# # GetUsageAlerts200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | [**\Upsun\Model\Alert[]**](Alert.md) | The list of available usage alerts. | [optional] +**current** | [**\Upsun\Model\Alert[]**](Alert.md) | The list of the current usage alerts. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitHub.md b/docs/Model/GitHub.md new file mode 100644 index 00000000..7ea380ee --- /dev/null +++ b/docs/Model/GitHub.md @@ -0,0 +1,10 @@ +# # GitHub + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitLab.md b/docs/Model/GitLab.md new file mode 100644 index 00000000..8ce031fc --- /dev/null +++ b/docs/Model/GitLab.md @@ -0,0 +1,10 @@ +# # GitLab + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitLabIntegration.md b/docs/Model/GitLabIntegration.md new file mode 100644 index 00000000..a4d310af --- /dev/null +++ b/docs/Model/GitLabIntegration.md @@ -0,0 +1,23 @@ +# # GitLabIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fetchBranches** | **bool** | Whether or not to fetch branches. | +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | +**environmentInitResources** | **string** | The resources used when initializing a new service | +**tokenExpiresAt** | **\DateTime** | | +**rotateToken** | **bool** | | +**rotateTokenValidityInWeeks** | **int** | | +**baseUrl** | **string** | The base URL of the GitLab installation. | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | +**id** | **string** | The identifier of GitLabIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitLabIntegrationCreateInput.md b/docs/Model/GitLabIntegrationCreateInput.md new file mode 100644 index 00000000..6ad7e01b --- /dev/null +++ b/docs/Model/GitLabIntegrationCreateInput.md @@ -0,0 +1,20 @@ +# # GitLabIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The GitLab private token. | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**rotateToken** | **bool** | | [optional] +**rotateTokenValidityInWeeks** | **int** | | [optional] +**baseUrl** | **string** | The base URL of the GitLab installation. | [optional] +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | [optional] +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | [optional] +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitLabIntegrationPatch.md b/docs/Model/GitLabIntegrationPatch.md new file mode 100644 index 00000000..b75c619c --- /dev/null +++ b/docs/Model/GitLabIntegrationPatch.md @@ -0,0 +1,20 @@ +# # GitLabIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The GitLab private token. | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**rotateToken** | **bool** | | [optional] +**rotateTokenValidityInWeeks** | **int** | | [optional] +**baseUrl** | **string** | The base URL of the GitLab installation. | [optional] +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | [optional] +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | [optional] +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GitServerConfiguration.md b/docs/Model/GitServerConfiguration.md new file mode 100644 index 00000000..162a50b7 --- /dev/null +++ b/docs/Model/GitServerConfiguration.md @@ -0,0 +1,9 @@ +# # GitServerConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**pushSizeHardLimit** | **int** | Push Size Reject Limit | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GithubIntegration.md b/docs/Model/GithubIntegration.md new file mode 100644 index 00000000..7de8689d --- /dev/null +++ b/docs/Model/GithubIntegration.md @@ -0,0 +1,22 @@ +# # GithubIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fetchBranches** | **bool** | Whether or not to fetch branches. | +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | +**environmentInitResources** | **string** | The resources used when initializing a new service | +**baseUrl** | **string** | The base URL of the Github API endpoint. | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**buildPullRequests** | **bool** | Whether or not to build pull requests. | +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | +**tokenType** | **string** | The type of the token of this GitHub integration | +**id** | **string** | The identifier of GithubIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GithubIntegrationCreateInput.md b/docs/Model/GithubIntegrationCreateInput.md new file mode 100644 index 00000000..609ef1b2 --- /dev/null +++ b/docs/Model/GithubIntegrationCreateInput.md @@ -0,0 +1,19 @@ +# # GithubIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The GitHub token. | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**baseUrl** | **string** | The base URL of the Github API endpoint. | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | [optional] +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GithubIntegrationPatch.md b/docs/Model/GithubIntegrationPatch.md new file mode 100644 index 00000000..e711ebec --- /dev/null +++ b/docs/Model/GithubIntegrationPatch.md @@ -0,0 +1,19 @@ +# # GithubIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The GitHub token. | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**baseUrl** | **string** | The base URL of the Github API endpoint. | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | [optional] +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GoogleSSOConfig.md b/docs/Model/GoogleSSOConfig.md new file mode 100644 index 00000000..2954542c --- /dev/null +++ b/docs/Model/GoogleSSOConfig.md @@ -0,0 +1,10 @@ +# # GoogleSSOConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**providerType** | **string** | SSO provider type. | [optional] +**domain** | **string** | Google hosted domain. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GrantProjectTeamAccessRequestInner.md b/docs/Model/GrantProjectTeamAccessRequestInner.md new file mode 100644 index 00000000..eae2e1a7 --- /dev/null +++ b/docs/Model/GrantProjectTeamAccessRequestInner.md @@ -0,0 +1,9 @@ +# # GrantProjectTeamAccessRequestInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**teamId** | **string** | ID of the team. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GrantProjectUserAccessRequestInner.md b/docs/Model/GrantProjectUserAccessRequestInner.md new file mode 100644 index 00000000..cdc6ba7c --- /dev/null +++ b/docs/Model/GrantProjectUserAccessRequestInner.md @@ -0,0 +1,11 @@ +# # GrantProjectUserAccessRequestInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userId** | **string** | ID of the user. | +**permissions** | **string[]** | An array of project permissions. | +**autoAddMember** | **bool** | If the specified user is not a member of the project's organization, add it automatically. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GrantTeamProjectAccessRequestInner.md b/docs/Model/GrantTeamProjectAccessRequestInner.md new file mode 100644 index 00000000..31583ae2 --- /dev/null +++ b/docs/Model/GrantTeamProjectAccessRequestInner.md @@ -0,0 +1,9 @@ +# # GrantTeamProjectAccessRequestInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectId** | **string** | ID of the project. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GrantUserProjectAccessRequestInner.md b/docs/Model/GrantUserProjectAccessRequestInner.md new file mode 100644 index 00000000..42e8bcb7 --- /dev/null +++ b/docs/Model/GrantUserProjectAccessRequestInner.md @@ -0,0 +1,10 @@ +# # GrantUserProjectAccessRequestInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectId** | **string** | ID of the project. | +**permissions** | **string[]** | An array of project permissions. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/GuaranteedResources.md b/docs/Model/GuaranteedResources.md new file mode 100644 index 00000000..85fd3c3b --- /dev/null +++ b/docs/Model/GuaranteedResources.md @@ -0,0 +1,10 @@ +# # GuaranteedResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, guaranteed resources can be used | +**instanceLimit** | **int** | Instance limit for guaranteed resources | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HTTPLogForwarding.md b/docs/Model/HTTPLogForwarding.md new file mode 100644 index 00000000..65fa65ab --- /dev/null +++ b/docs/Model/HTTPLogForwarding.md @@ -0,0 +1,10 @@ +# # HTTPLogForwarding + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HalLinks.md b/docs/Model/HalLinks.md new file mode 100644 index 00000000..cf562fbd --- /dev/null +++ b/docs/Model/HalLinks.md @@ -0,0 +1,11 @@ +# # HalLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\HalLinksSelf**](HalLinksSelf.md) | | [optional] +**previous** | [**\Upsun\Model\HalLinksPrevious**](HalLinksPrevious.md) | | [optional] +**next** | [**\Upsun\Model\HalLinksNext**](HalLinksNext.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HalLinksNext.md b/docs/Model/HalLinksNext.md new file mode 100644 index 00000000..1cd47b05 --- /dev/null +++ b/docs/Model/HalLinksNext.md @@ -0,0 +1,10 @@ +# # HalLinksNext + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | Title of the link | [optional] +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HalLinksPrevious.md b/docs/Model/HalLinksPrevious.md new file mode 100644 index 00000000..5824a71c --- /dev/null +++ b/docs/Model/HalLinksPrevious.md @@ -0,0 +1,10 @@ +# # HalLinksPrevious + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | Title of the link | [optional] +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HalLinksSelf.md b/docs/Model/HalLinksSelf.md new file mode 100644 index 00000000..fac43b9b --- /dev/null +++ b/docs/Model/HalLinksSelf.md @@ -0,0 +1,10 @@ +# # HalLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | Title of the link | [optional] +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthEmail.md b/docs/Model/HealthEmail.md new file mode 100644 index 00000000..22a25da0 --- /dev/null +++ b/docs/Model/HealthEmail.md @@ -0,0 +1,10 @@ +# # HealthEmail + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthPagerDuty.md b/docs/Model/HealthPagerDuty.md new file mode 100644 index 00000000..1974df51 --- /dev/null +++ b/docs/Model/HealthPagerDuty.md @@ -0,0 +1,10 @@ +# # HealthPagerDuty + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthSlack.md b/docs/Model/HealthSlack.md new file mode 100644 index 00000000..cee14455 --- /dev/null +++ b/docs/Model/HealthSlack.md @@ -0,0 +1,10 @@ +# # HealthSlack + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthWebHook.md b/docs/Model/HealthWebHook.md new file mode 100644 index 00000000..3760e600 --- /dev/null +++ b/docs/Model/HealthWebHook.md @@ -0,0 +1,10 @@ +# # HealthWebHook + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthWebHookIntegration.md b/docs/Model/HealthWebHookIntegration.md new file mode 100644 index 00000000..24d22455 --- /dev/null +++ b/docs/Model/HealthWebHookIntegration.md @@ -0,0 +1,13 @@ +# # HealthWebHookIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**url** | **string** | The URL of the webhook | +**id** | **string** | The identifier of HealthWebHookIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthWebHookIntegrationCreateInput.md b/docs/Model/HealthWebHookIntegrationCreateInput.md new file mode 100644 index 00000000..dc2a1369 --- /dev/null +++ b/docs/Model/HealthWebHookIntegrationCreateInput.md @@ -0,0 +1,11 @@ +# # HealthWebHookIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The URL of the webhook | +**sharedKey** | **string** | The JWS shared secret key | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HealthWebHookIntegrationPatch.md b/docs/Model/HealthWebHookIntegrationPatch.md new file mode 100644 index 00000000..fbdbf3c3 --- /dev/null +++ b/docs/Model/HealthWebHookIntegrationPatch.md @@ -0,0 +1,11 @@ +# # HealthWebHookIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The URL of the webhook | +**sharedKey** | **string** | The JWS shared secret key | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Hooks.md b/docs/Model/Hooks.md new file mode 100644 index 00000000..aa0fb186 --- /dev/null +++ b/docs/Model/Hooks.md @@ -0,0 +1,11 @@ +# # Hooks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**build** | **string** | Hook executed after the build process. | +**deploy** | **string** | Hook executed after the deployment of new code. | +**postDeploy** | **string** | Hook executed after an environment is fully deployed. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HostsInner.md b/docs/Model/HostsInner.md new file mode 100644 index 00000000..11508f2a --- /dev/null +++ b/docs/Model/HostsInner.md @@ -0,0 +1,11 @@ +# # HostsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of the host. | +**type** | **string** | The type of the deployment to this host. | +**services** | **string[]** | The services assigned to this host | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpAccessPermissions.md b/docs/Model/HttpAccessPermissions.md new file mode 100644 index 00000000..05c3a2b0 --- /dev/null +++ b/docs/Model/HttpAccessPermissions.md @@ -0,0 +1,11 @@ +# # HttpAccessPermissions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**isEnabled** | **bool** | Whether http_access control is enabled | +**addresses** | [**\Upsun\Model\AddressGrantsInner[]**](AddressGrantsInner.md) | | +**basicAuth** | **array** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpAccessPermissions1.md b/docs/Model/HttpAccessPermissions1.md new file mode 100644 index 00000000..e67f17bf --- /dev/null +++ b/docs/Model/HttpAccessPermissions1.md @@ -0,0 +1,11 @@ +# # HttpAccessPermissions1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**isEnabled** | **bool** | Whether http_access control is enabled | +**addresses** | [**\Upsun\Model\AddressGrantsInner[]**](AddressGrantsInner.md) | | +**basicAuth** | **array** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpAccessPermissions2.md b/docs/Model/HttpAccessPermissions2.md new file mode 100644 index 00000000..b9479b72 --- /dev/null +++ b/docs/Model/HttpAccessPermissions2.md @@ -0,0 +1,11 @@ +# # HttpAccessPermissions2 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**isEnabled** | **bool** | Whether http_access control is enabled | [optional] +**addresses** | [**\Upsun\Model\AddressGrantsInner[]**](AddressGrantsInner.md) | | [optional] +**basicAuth** | **array** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpLogIntegration.md b/docs/Model/HttpLogIntegration.md new file mode 100644 index 00000000..c9b4a3da --- /dev/null +++ b/docs/Model/HttpLogIntegration.md @@ -0,0 +1,17 @@ +# # HttpLogIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**url** | **string** | | +**headers** | **array** | HTTP headers to use in POST requests | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**id** | **string** | The identifier of HttpLogIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpLogIntegrationCreateInput.md b/docs/Model/HttpLogIntegrationCreateInput.md new file mode 100644 index 00000000..d57c3100 --- /dev/null +++ b/docs/Model/HttpLogIntegrationCreateInput.md @@ -0,0 +1,14 @@ +# # HttpLogIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**headers** | **array** | HTTP headers to use in POST requests | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/HttpLogIntegrationPatch.md b/docs/Model/HttpLogIntegrationPatch.md new file mode 100644 index 00000000..875db210 --- /dev/null +++ b/docs/Model/HttpLogIntegrationPatch.md @@ -0,0 +1,14 @@ +# # HttpLogIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**headers** | **array** | HTTP headers to use in POST requests | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ImageTypeRestrictions.md b/docs/Model/ImageTypeRestrictions.md new file mode 100644 index 00000000..5f7553c1 --- /dev/null +++ b/docs/Model/ImageTypeRestrictions.md @@ -0,0 +1,10 @@ +# # ImageTypeRestrictions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**only** | **string[]** | Image types to be allowed use. | [optional] +**exclude** | **string[]** | Image types to be denied use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ImagesValueValue.md b/docs/Model/ImagesValueValue.md new file mode 100644 index 00000000..0d2387e4 --- /dev/null +++ b/docs/Model/ImagesValueValue.md @@ -0,0 +1,9 @@ +# # ImagesValueValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | **bool** | The image is available for deployment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Integration.md b/docs/Model/Integration.md new file mode 100644 index 00000000..95518e59 --- /dev/null +++ b/docs/Model/Integration.md @@ -0,0 +1,60 @@ +# # Integration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**fetchBranches** | **bool** | Whether or not to fetch branches. | +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | +**environmentInitResources** | **string** | The resources used when initializing a new service | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**buildPullRequests** | **bool** | Whether or not to build pull requests. | +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | +**url** | **string** | The URL of the webhook | +**username** | **string** | The Bitbucket Server user. | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**environmentsCredentials** | [**array**](EnvironmentsCredentialsValue.md) | Blackfire environments credentials | +**continuousProfiling** | **bool** | Whether continuous profiling is enabled for the project | +**events** | **string[]** | Events to execute the hook on | +**environments** | **string[]** | The environments to execute the hook on | +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | +**states** | **string[]** | Events to execute the hook on | +**result** | **string** | Result to execute the hook on | +**serviceId** | **string** | | +**baseUrl** | **string** | The base URL of the GitLab installation. | +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | +**tokenType** | **string** | The type of the token of this GitHub integration | +**tokenExpiresAt** | **\DateTime** | | +**rotateToken** | **bool** | | +**rotateTokenValidityInWeeks** | **int** | | +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | +**fromAddress** | **string** | The email address to use | +**recipients** | **string[]** | Recipients of the email | +**routingKey** | **string** | The PagerDuty routing key | +**channel** | **string** | The Slack channel to post messages to | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**headers** | **array** | HTTP headers to use in POST requests | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**script** | **string** | The script to run | +**index** | **string** | The Splunk Index | +**sourcetype** | **string** | The event 'sourcetype' | +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | +**host** | **string** | Syslog relay/collector host | +**port** | **int** | Syslog relay/collector port | +**protocol** | **string** | Transport protocol | +**facility** | **int** | Syslog facility | +**messageFormat** | **string** | Syslog message format | +**sharedKey** | **string** | The JWS shared secret key | +**id** | **string** | The identifier of WebHookIntegration | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer**](OAuth2Consumer.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential**](AddonCredential.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/IntegrationCreateInput.md b/docs/Model/IntegrationCreateInput.md new file mode 100644 index 00000000..6036e34a --- /dev/null +++ b/docs/Model/IntegrationCreateInput.md @@ -0,0 +1,57 @@ +# # IntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**url** | **string** | The URL of the webhook | +**username** | **string** | The Bitbucket Server user. | +**token** | **string** | The Splunk Authorization Token | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**serviceId** | **string** | | +**recipients** | **string[]** | Recipients of the email | +**routingKey** | **string** | The PagerDuty routing key | +**channel** | **string** | The Slack channel to post messages to | +**licenseKey** | **string** | The NewRelic Logs License Key | +**script** | **string** | The script to run | +**index** | **string** | The Splunk Index | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer1**](OAuth2Consumer1.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential1**](AddonCredential1.md) | | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | [optional] +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | [optional] +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] +**baseUrl** | **string** | The base URL of the GitLab installation. | [optional] +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | [optional] +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | [optional] +**rotateToken** | **bool** | | [optional] +**rotateTokenValidityInWeeks** | **int** | | [optional] +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | [optional] +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | [optional] +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] +**fromAddress** | **string** | The email address to use | [optional] +**sharedKey** | **string** | The JWS shared secret key | [optional] +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**headers** | **array** | HTTP headers to use in POST requests | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] +**sourcetype** | **string** | The event 'sourcetype' | [optional] +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | [optional] +**host** | **string** | Syslog relay/collector host | [optional] +**port** | **int** | Syslog relay/collector port | [optional] +**protocol** | **string** | Transport protocol | [optional] +**facility** | **int** | Syslog facility | [optional] +**messageFormat** | **string** | Syslog message format | [optional] +**authToken** | **string** | | [optional] +**authMode** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/IntegrationPatch.md b/docs/Model/IntegrationPatch.md new file mode 100644 index 00000000..dcc00405 --- /dev/null +++ b/docs/Model/IntegrationPatch.md @@ -0,0 +1,57 @@ +# # IntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**repository** | **string** | The GitHub repository (in the form `user/repo`). | +**url** | **string** | The URL of the webhook | +**username** | **string** | The Bitbucket Server user. | +**token** | **string** | The Splunk Authorization Token | +**project** | **string** | The GitLab project (in the form `namespace/repo`). | +**serviceId** | **string** | | +**recipients** | **string[]** | Recipients of the email | +**routingKey** | **string** | The PagerDuty routing key | +**channel** | **string** | The Slack channel to post messages to | +**licenseKey** | **string** | The NewRelic Logs License Key | +**script** | **string** | The script to run | +**index** | **string** | The Splunk Index | +**fetchBranches** | **bool** | Whether or not to fetch branches. | [optional] +**pruneBranches** | **bool** | Whether or not to remove branches that disappeared remotely (requires `fetch_branches`). | [optional] +**environmentInitResources** | **string** | The resources used when initializing a new service | [optional] +**appCredentials** | [**\Upsun\Model\OAuth2Consumer1**](OAuth2Consumer1.md) | | [optional] +**addonCredentials** | [**\Upsun\Model\AddonCredential1**](AddonCredential1.md) | | [optional] +**buildPullRequests** | **bool** | Whether or not to build pull requests. | [optional] +**pullRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building pull requests. | [optional] +**resyncPullRequests** | **bool** | Whether or not pull request environment data should be re-synced on every build. | [optional] +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] +**baseUrl** | **string** | The base URL of the GitLab installation. | [optional] +**buildDraftPullRequests** | **bool** | Whether or not to build draft pull requests (requires `build_pull_requests`). | [optional] +**buildPullRequestsPostMerge** | **bool** | Whether to build pull requests post-merge (if true) or pre-merge (if false). | [optional] +**rotateToken** | **bool** | | [optional] +**rotateTokenValidityInWeeks** | **int** | | [optional] +**buildMergeRequests** | **bool** | Whether or not to build merge requests. | [optional] +**buildWipMergeRequests** | **bool** | Whether or not to build work in progress merge requests (requires `build_merge_requests`). | [optional] +**mergeRequestsCloneParentData** | **bool** | Whether or not to clone parent data when building merge requests. | [optional] +**fromAddress** | **string** | The email address to use | [optional] +**sharedKey** | **string** | The JWS shared secret key | [optional] +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**headers** | **array** | HTTP headers to use in POST requests | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] +**sourcetype** | **string** | The event 'sourcetype' | [optional] +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | [optional] +**host** | **string** | Syslog relay/collector host | [optional] +**port** | **int** | Syslog relay/collector port | [optional] +**protocol** | **string** | Transport protocol | [optional] +**facility** | **int** | Syslog facility | [optional] +**messageFormat** | **string** | Syslog message format | [optional] +**authToken** | **string** | | [optional] +**authMode** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Integrations.md b/docs/Model/Integrations.md new file mode 100644 index 00000000..ac1ad87b --- /dev/null +++ b/docs/Model/Integrations.md @@ -0,0 +1,11 @@ +# # Integrations + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, integrations can be used | +**config** | [**\Upsun\Model\Config**](Config.md) | | [optional] +**allowedIntegrations** | **string[]** | List of integrations allowed to be created | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Invoice.md b/docs/Model/Invoice.md new file mode 100644 index 00000000..dfd9eed5 --- /dev/null +++ b/docs/Model/Invoice.md @@ -0,0 +1,24 @@ +# # Invoice + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The invoice id. | [optional] +**invoiceNumber** | **string** | The invoice number. | [optional] +**type** | **string** | Invoice type. | [optional] +**orderId** | **string** | The id of the related order. | [optional] +**relatedInvoiceId** | **string** | If the invoice is a credit memo (type=credit_memo), this field stores the id of the related/original invoice. | [optional] +**status** | **string** | The invoice status. | [optional] +**owner** | **string** | The ULID of the owner. | [optional] +**invoiceDate** | **\DateTime** | The invoice date. | [optional] +**invoiceDue** | **\DateTime** | The invoice due date. | [optional] +**created** | **\DateTime** | The time when the invoice was created. | [optional] +**changed** | **\DateTime** | The time when the invoice was changed. | [optional] +**company** | **string** | Company name (if any). | [optional] +**total** | **float** | The invoice total. | [optional] +**address** | [**\Upsun\Model\Address**](Address.md) | | [optional] +**notes** | **string** | The invoice note. | [optional] +**invoicePdf** | [**\Upsun\Model\InvoicePDF**](InvoicePDF.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/InvoicePDF.md b/docs/Model/InvoicePDF.md new file mode 100644 index 00000000..5c977e84 --- /dev/null +++ b/docs/Model/InvoicePDF.md @@ -0,0 +1,10 @@ +# # InvoicePDF + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**url** | **string** | A link to the PDF invoice. | [optional] +**status** | **string** | The status of the PDF document. We generate invoice PDF asyncronously in batches. An invoice PDF document may not be immediately available to download. If status is 'ready', the PDF is ready to download. 'pending' means the PDF is not created but queued up. If you get this status, try again later. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/IssuerInner.md b/docs/Model/IssuerInner.md new file mode 100644 index 00000000..f1f2f191 --- /dev/null +++ b/docs/Model/IssuerInner.md @@ -0,0 +1,11 @@ +# # IssuerInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**oid** | **string** | The OID of the attribute | +**alias** | **string** | The alias of the attribute, if known | +**value** | **string** | The value | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/LineItem.md b/docs/Model/LineItem.md new file mode 100644 index 00000000..8f1fcb16 --- /dev/null +++ b/docs/Model/LineItem.md @@ -0,0 +1,17 @@ +# # LineItem + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of line item. | [optional] +**licenseId** | **float** | The associated subscription identifier. | [optional] +**projectId** | **string** | The associated project identifier. | [optional] +**product** | **string** | Display name of the line item product. | [optional] +**sku** | **string** | The line item product SKU. | [optional] +**total** | **float** | Total price as a decimal. | [optional] +**totalFormatted** | **string** | Total price, formatted with currency. | [optional] +**components** | [**array**](LineItemComponent.md) | The price components for the line item, keyed by type. | [optional] +**excludeFromInvoice** | **bool** | Line item should not be considered billable. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/LineItemComponent.md b/docs/Model/LineItemComponent.md new file mode 100644 index 00000000..add275df --- /dev/null +++ b/docs/Model/LineItemComponent.md @@ -0,0 +1,12 @@ +# # LineItemComponent + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**amount** | **float** | The price as a decimal. | [optional] +**amountFormatted** | **string** | The price formatted with currency. | [optional] +**displayTitle** | **string** | The display title for the component. | [optional] +**currency** | **string** | The currency code for the component. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Link.md b/docs/Model/Link.md new file mode 100644 index 00000000..77cc9378 --- /dev/null +++ b/docs/Model/Link.md @@ -0,0 +1,9 @@ +# # Link + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListLinks.md b/docs/Model/ListLinks.md new file mode 100644 index 00000000..0e4703c4 --- /dev/null +++ b/docs/Model/ListLinks.md @@ -0,0 +1,11 @@ +# # ListLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\Link**](Link.md) | | [optional] +**previous** | [**\Upsun\Model\Link**](Link.md) | | [optional] +**next** | [**\Upsun\Model\Link**](Link.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgDiscounts200Response.md b/docs/Model/ListOrgDiscounts200Response.md new file mode 100644 index 00000000..02bf876f --- /dev/null +++ b/docs/Model/ListOrgDiscounts200Response.md @@ -0,0 +1,10 @@ +# # ListOrgDiscounts200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Discount[]**](Discount.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgInvoices200Response.md b/docs/Model/ListOrgInvoices200Response.md new file mode 100644 index 00000000..bbc6db3c --- /dev/null +++ b/docs/Model/ListOrgInvoices200Response.md @@ -0,0 +1,9 @@ +# # ListOrgInvoices200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Invoice[]**](Invoice.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgMembers200Response.md b/docs/Model/ListOrgMembers200Response.md new file mode 100644 index 00000000..c285d043 --- /dev/null +++ b/docs/Model/ListOrgMembers200Response.md @@ -0,0 +1,11 @@ +# # ListOrgMembers200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | Total number of items across pages. | [optional] +**items** | [**\Upsun\Model\OrganizationMember[]**](OrganizationMember.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgOrders200Response.md b/docs/Model/ListOrgOrders200Response.md new file mode 100644 index 00000000..5ba21c92 --- /dev/null +++ b/docs/Model/ListOrgOrders200Response.md @@ -0,0 +1,10 @@ +# # ListOrgOrders200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Order[]**](Order.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPlanRecords200Response.md b/docs/Model/ListOrgPlanRecords200Response.md new file mode 100644 index 00000000..11e50319 --- /dev/null +++ b/docs/Model/ListOrgPlanRecords200Response.md @@ -0,0 +1,10 @@ +# # ListOrgPlanRecords200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\PlanRecords[]**](PlanRecords.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200Response.md b/docs/Model/ListOrgPrepaymentTransactions200Response.md new file mode 100644 index 00000000..7a1cacfc --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200Response.md @@ -0,0 +1,11 @@ +# # ListOrgPrepaymentTransactions200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | Total number of items across pages. | [optional] +**transactions** | [**\Upsun\Model\PrepaymentTransactionObject[]**](PrepaymentTransactionObject.md) | | [optional] +**links** | [**\Upsun\Model\ListOrgPrepaymentTransactions200ResponseLinks**](ListOrgPrepaymentTransactions200ResponseLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200ResponseLinks.md b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinks.md new file mode 100644 index 00000000..73451bb9 --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinks.md @@ -0,0 +1,12 @@ +# # ListOrgPrepaymentTransactions200ResponseLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\ListOrgPrepaymentTransactions200ResponseLinksSelf**](ListOrgPrepaymentTransactions200ResponseLinksSelf.md) | | [optional] +**previous** | [**\Upsun\Model\ListOrgPrepaymentTransactions200ResponseLinksPrevious**](ListOrgPrepaymentTransactions200ResponseLinksPrevious.md) | | [optional] +**next** | [**\Upsun\Model\ListOrgPrepaymentTransactions200ResponseLinksNext**](ListOrgPrepaymentTransactions200ResponseLinksNext.md) | | [optional] +**prepayment** | [**\Upsun\Model\ListOrgPrepaymentTransactions200ResponseLinksPrepayment**](ListOrgPrepaymentTransactions200ResponseLinksPrepayment.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.md b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.md new file mode 100644 index 00000000..97142bcd --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.md @@ -0,0 +1,9 @@ +# # ListOrgPrepaymentTransactions200ResponseLinksNext + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.md b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.md new file mode 100644 index 00000000..fde73372 --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.md @@ -0,0 +1,9 @@ +# # ListOrgPrepaymentTransactions200ResponseLinksPrepayment + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.md b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.md new file mode 100644 index 00000000..1c4711e5 --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.md @@ -0,0 +1,9 @@ +# # ListOrgPrepaymentTransactions200ResponseLinksPrevious + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.md b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.md new file mode 100644 index 00000000..16537570 --- /dev/null +++ b/docs/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.md @@ -0,0 +1,9 @@ +# # ListOrgPrepaymentTransactions200ResponseLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgProjects200Response.md b/docs/Model/ListOrgProjects200Response.md new file mode 100644 index 00000000..d43c9aae --- /dev/null +++ b/docs/Model/ListOrgProjects200Response.md @@ -0,0 +1,10 @@ +# # ListOrgProjects200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\OrganizationProject[]**](OrganizationProject.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgSubscriptions200Response.md b/docs/Model/ListOrgSubscriptions200Response.md new file mode 100644 index 00000000..6b9373eb --- /dev/null +++ b/docs/Model/ListOrgSubscriptions200Response.md @@ -0,0 +1,10 @@ +# # ListOrgSubscriptions200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Subscription[]**](Subscription.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgUsageRecords200Response.md b/docs/Model/ListOrgUsageRecords200Response.md new file mode 100644 index 00000000..0ecf6152 --- /dev/null +++ b/docs/Model/ListOrgUsageRecords200Response.md @@ -0,0 +1,10 @@ +# # ListOrgUsageRecords200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Usage[]**](Usage.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListOrgs200Response.md b/docs/Model/ListOrgs200Response.md new file mode 100644 index 00000000..9b4e2b02 --- /dev/null +++ b/docs/Model/ListOrgs200Response.md @@ -0,0 +1,11 @@ +# # ListOrgs200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | Total number of items across pages. | [optional] +**items** | [**\Upsun\Model\Organization[]**](Organization.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListProfiles200Response.md b/docs/Model/ListProfiles200Response.md new file mode 100644 index 00000000..887f4f4a --- /dev/null +++ b/docs/Model/ListProfiles200Response.md @@ -0,0 +1,11 @@ +# # ListProfiles200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | Total number of results. | [optional] +**profiles** | [**\Upsun\Model\Profile[]**](Profile.md) | Array of user profiles. | [optional] +**links** | [**\Upsun\Model\HalLinks**](HalLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListProjectTeamAccess200Response.md b/docs/Model/ListProjectTeamAccess200Response.md new file mode 100644 index 00000000..e159e297 --- /dev/null +++ b/docs/Model/ListProjectTeamAccess200Response.md @@ -0,0 +1,10 @@ +# # ListProjectTeamAccess200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\TeamProjectAccess[]**](TeamProjectAccess.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListProjectUserAccess200Response.md b/docs/Model/ListProjectUserAccess200Response.md new file mode 100644 index 00000000..e4796faf --- /dev/null +++ b/docs/Model/ListProjectUserAccess200Response.md @@ -0,0 +1,10 @@ +# # ListProjectUserAccess200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\UserProjectAccess[]**](UserProjectAccess.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListRegions200Response.md b/docs/Model/ListRegions200Response.md new file mode 100644 index 00000000..fc7a72df --- /dev/null +++ b/docs/Model/ListRegions200Response.md @@ -0,0 +1,10 @@ +# # ListRegions200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**regions** | [**\Upsun\Model\Region[]**](Region.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListTeamMembers200Response.md b/docs/Model/ListTeamMembers200Response.md new file mode 100644 index 00000000..d2337924 --- /dev/null +++ b/docs/Model/ListTeamMembers200Response.md @@ -0,0 +1,10 @@ +# # ListTeamMembers200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\TeamMember[]**](TeamMember.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListTeams200Response.md b/docs/Model/ListTeams200Response.md new file mode 100644 index 00000000..8b24d32f --- /dev/null +++ b/docs/Model/ListTeams200Response.md @@ -0,0 +1,11 @@ +# # ListTeams200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Team[]**](Team.md) | | [optional] +**count** | **int** | Total count of all the teams. | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListTicketCategories200ResponseInner.md b/docs/Model/ListTicketCategories200ResponseInner.md new file mode 100644 index 00000000..ce6afd76 --- /dev/null +++ b/docs/Model/ListTicketCategories200ResponseInner.md @@ -0,0 +1,10 @@ +# # ListTicketCategories200ResponseInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | Machine name of the category as is listed in zendesk. | [optional] +**label** | **string** | The human-readable label of the category. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListTicketPriorities200ResponseInner.md b/docs/Model/ListTicketPriorities200ResponseInner.md new file mode 100644 index 00000000..9e892bf4 --- /dev/null +++ b/docs/Model/ListTicketPriorities200ResponseInner.md @@ -0,0 +1,12 @@ +# # ListTicketPriorities200ResponseInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | Machine name of the priority. | [optional] +**label** | **string** | The human-readable label of the priority. | [optional] +**shortDescription** | **string** | The short description of the priority. | [optional] +**description** | **string** | The long description of the priority. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListTickets200Response.md b/docs/Model/ListTickets200Response.md new file mode 100644 index 00000000..0132e578 --- /dev/null +++ b/docs/Model/ListTickets200Response.md @@ -0,0 +1,11 @@ +# # ListTickets200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | Total number of results. | [optional] +**tickets** | [**\Upsun\Model\Ticket[]**](Ticket.md) | Array of support tickets. | [optional] +**links** | [**\Upsun\Model\HalLinks**](HalLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListUserExtendedAccess200Response.md b/docs/Model/ListUserExtendedAccess200Response.md new file mode 100644 index 00000000..1ff19fa1 --- /dev/null +++ b/docs/Model/ListUserExtendedAccess200Response.md @@ -0,0 +1,10 @@ +# # ListUserExtendedAccess200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\ListUserExtendedAccess200ResponseItemsInner[]**](ListUserExtendedAccess200ResponseItemsInner.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListUserExtendedAccess200ResponseItemsInner.md b/docs/Model/ListUserExtendedAccess200ResponseItemsInner.md new file mode 100644 index 00000000..a2ff961f --- /dev/null +++ b/docs/Model/ListUserExtendedAccess200ResponseItemsInner.md @@ -0,0 +1,15 @@ +# # ListUserExtendedAccess200ResponseItemsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userId** | **string** | The ID of the user. | [optional] +**resourceId** | **string** | The ID of the resource. | [optional] +**resourceType** | **string** | The type of the resource access to which is granted. | [optional] +**organizationId** | **string** | The ID of the organization owning the resource. | [optional] +**permissions** | **string[]** | List of project permissions. | [optional] +**grantedAt** | **\DateTime** | The date and time when the access was granted. | [optional] +**updatedAt** | **\DateTime** | The date and time when the access was updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ListUserOrgs200Response.md b/docs/Model/ListUserOrgs200Response.md new file mode 100644 index 00000000..886687dc --- /dev/null +++ b/docs/Model/ListUserOrgs200Response.md @@ -0,0 +1,10 @@ +# # ListUserOrgs200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**items** | [**\Upsun\Model\Organization[]**](Organization.md) | | [optional] +**links** | [**\Upsun\Model\ListLinks**](ListLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/LogsForwarding.md b/docs/Model/LogsForwarding.md new file mode 100644 index 00000000..e74e47b6 --- /dev/null +++ b/docs/Model/LogsForwarding.md @@ -0,0 +1,9 @@ +# # LogsForwarding + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**maxExtraPayloadSize** | **int** | Limit on the maximum size for the custom extra attributes added to the forwarded logs payload | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/MergeInfo.md b/docs/Model/MergeInfo.md new file mode 100644 index 00000000..6ad82854 --- /dev/null +++ b/docs/Model/MergeInfo.md @@ -0,0 +1,11 @@ +# # MergeInfo + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**commitsAhead** | **int** | The amount of commits that are in the environment but not in the parent | +**commitsBehind** | **int** | The amount of commits that are in the parent but not in the environment | +**parentRef** | **string** | The reference in Git for the parent environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Metrics.md b/docs/Model/Metrics.md new file mode 100644 index 00000000..0e195d66 --- /dev/null +++ b/docs/Model/Metrics.md @@ -0,0 +1,9 @@ +# # Metrics + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**maxRange** | **string** | Limit on the maximum time range allowed in metrics retrieval | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/MetricsMetadata.md b/docs/Model/MetricsMetadata.md new file mode 100644 index 00000000..b1d4a5a6 --- /dev/null +++ b/docs/Model/MetricsMetadata.md @@ -0,0 +1,12 @@ +# # MetricsMetadata + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**from** | **mixed** | The value used to calculate the lower bound of the temporal query. Inclusive. | [optional] +**to** | **mixed** | The truncated value used to calculate the upper bound of the temporal query. Exclusive. | [optional] +**interval** | **mixed** | The interval used to group the metric values. | [optional] +**units** | **mixed** | The units associated with the provided values. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/MetricsValue.md b/docs/Model/MetricsValue.md new file mode 100644 index 00000000..18a88bd9 --- /dev/null +++ b/docs/Model/MetricsValue.md @@ -0,0 +1,10 @@ +# # MetricsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**value** | **mixed** | The measured value of the metric for the given time interval. | [optional] +**startTime** | **mixed** | The timestamp at which the time interval began. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/MinimumResources.md b/docs/Model/MinimumResources.md new file mode 100644 index 00000000..93db6724 --- /dev/null +++ b/docs/Model/MinimumResources.md @@ -0,0 +1,13 @@ +# # MinimumResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | Cpu value | +**memory** | **int** | Memory in MB | +**cpuType** | **string** | resource type | +**disk** | **int** | Disk size in MB | +**profileSize** | **string** | The closest profile size that matches the resources | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/MountsValue.md b/docs/Model/MountsValue.md new file mode 100644 index 00000000..53108d49 --- /dev/null +++ b/docs/Model/MountsValue.md @@ -0,0 +1,11 @@ +# # MountsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**source** | **string** | The type of mount that will provide the data. | +**sourcePath** | **string** | The path to be mounted, relative to the root directory of the volume that's being mounted from. | +**service** | **string** | The name of the service that the volume will be mounted from. Must be a service in `services.yaml` of type `network-storage`. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/NewRelic.md b/docs/Model/NewRelic.md new file mode 100644 index 00000000..2de191db --- /dev/null +++ b/docs/Model/NewRelic.md @@ -0,0 +1,10 @@ +# # NewRelic + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/NewRelicIntegration.md b/docs/Model/NewRelicIntegration.md new file mode 100644 index 00000000..418a93bc --- /dev/null +++ b/docs/Model/NewRelicIntegration.md @@ -0,0 +1,16 @@ +# # NewRelicIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**url** | **string** | | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**id** | **string** | The identifier of NewRelicIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/NewRelicIntegrationCreateInput.md b/docs/Model/NewRelicIntegrationCreateInput.md new file mode 100644 index 00000000..16641cf5 --- /dev/null +++ b/docs/Model/NewRelicIntegrationCreateInput.md @@ -0,0 +1,14 @@ +# # NewRelicIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**licenseKey** | **string** | The NewRelic Logs License Key | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/NewRelicIntegrationPatch.md b/docs/Model/NewRelicIntegrationPatch.md new file mode 100644 index 00000000..4a7ac1b4 --- /dev/null +++ b/docs/Model/NewRelicIntegrationPatch.md @@ -0,0 +1,14 @@ +# # NewRelicIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**licenseKey** | **string** | The NewRelic Logs License Key | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OAuth2Consumer.md b/docs/Model/OAuth2Consumer.md new file mode 100644 index 00000000..c96768bc --- /dev/null +++ b/docs/Model/OAuth2Consumer.md @@ -0,0 +1,9 @@ +# # OAuth2Consumer + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**key** | **string** | The OAuth consumer key. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OAuth2Consumer1.md b/docs/Model/OAuth2Consumer1.md new file mode 100644 index 00000000..8e8454f2 --- /dev/null +++ b/docs/Model/OAuth2Consumer1.md @@ -0,0 +1,10 @@ +# # OAuth2Consumer1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**key** | **string** | The OAuth consumer key. | +**secret** | **string** | The OAuth consumer secret. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Object.md b/docs/Model/Object.md new file mode 100644 index 00000000..dafd53ac --- /dev/null +++ b/docs/Model/Object.md @@ -0,0 +1,10 @@ +# # Object + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The type of object pointed to | +**sha** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OpenTelemetry.md b/docs/Model/OpenTelemetry.md new file mode 100644 index 00000000..e14b6fd0 --- /dev/null +++ b/docs/Model/OpenTelemetry.md @@ -0,0 +1,10 @@ +# # OpenTelemetry + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OperationsValue.md b/docs/Model/OperationsValue.md new file mode 100644 index 00000000..7fad5455 --- /dev/null +++ b/docs/Model/OperationsValue.md @@ -0,0 +1,11 @@ +# # OperationsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**commands** | [**\Upsun\Model\Commands**](Commands.md) | | +**timeout** | **int** | The maximum timeout in seconds after which the operation will be forcefully killed. | +**role** | **string** | The minimum role necessary to trigger this operation. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Order.md b/docs/Model/Order.md new file mode 100644 index 00000000..de3701eb --- /dev/null +++ b/docs/Model/Order.md @@ -0,0 +1,28 @@ +# # Order + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the order. | [optional] +**status** | **string** | The status of the subscription. | [optional] +**owner** | **string** | The UUID of the owner. | [optional] +**address** | [**\Upsun\Model\Address**](Address.md) | | [optional] +**company** | **string** | The company name. | [optional] +**vatNumber** | **string** | An identifier used in many countries for value added tax purposes. | [optional] +**billingPeriodStart** | **\DateTime** | The time when the billing period of the order started. | [optional] +**billingPeriodEnd** | **\DateTime** | The time when the billing period of the order ended. | [optional] +**billingPeriodLabel** | [**\Upsun\Model\OrderBillingPeriodLabel**](OrderBillingPeriodLabel.md) | | [optional] +**billingPeriodDuration** | **int** | The duration of the billing period of the order in seconds. | [optional] +**paidOn** | **\DateTime** | The time when the order was successfully charged. | [optional] +**total** | **int** | The total of the order. | [optional] +**totalFormatted** | **int** | The total of the order, formatted with currency. | [optional] +**components** | [**\Upsun\Model\Components**](Components.md) | | [optional] +**currency** | **string** | The order currency code. | [optional] +**invoiceUrl** | **string** | A link to the PDF invoice. | [optional] +**lastRefreshed** | **\DateTime** | The time when the order was last refreshed. | [optional] +**invoiced** | **bool** | The customer is invoiced. | [optional] +**lineItems** | [**\Upsun\Model\LineItem[]**](LineItem.md) | The line items that comprise the order. | [optional] +**links** | [**\Upsun\Model\OrderLinks**](OrderLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrderBillingPeriodLabel.md b/docs/Model/OrderBillingPeriodLabel.md new file mode 100644 index 00000000..903fb578 --- /dev/null +++ b/docs/Model/OrderBillingPeriodLabel.md @@ -0,0 +1,12 @@ +# # OrderBillingPeriodLabel + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The renderable label for the billing cycle. | [optional] +**month** | **string** | The month of the billing cycle. | [optional] +**year** | **string** | The year of the billing cycle. | [optional] +**nextMonth** | **string** | The name of the next month following this billing cycle. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrderLinks.md b/docs/Model/OrderLinks.md new file mode 100644 index 00000000..13f4c4f8 --- /dev/null +++ b/docs/Model/OrderLinks.md @@ -0,0 +1,9 @@ +# # OrderLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**invoices** | [**\Upsun\Model\OrderLinksInvoices**](OrderLinksInvoices.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrderLinksInvoices.md b/docs/Model/OrderLinksInvoices.md new file mode 100644 index 00000000..612f5ed8 --- /dev/null +++ b/docs/Model/OrderLinksInvoices.md @@ -0,0 +1,9 @@ +# # OrderLinksInvoices + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Organization.md b/docs/Model/Organization.md new file mode 100644 index 00000000..75644076 --- /dev/null +++ b/docs/Model/Organization.md @@ -0,0 +1,23 @@ +# # Organization + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the organization. | [optional] +**type** | **string** | The type of the organization. | [optional] +**ownerId** | **string** | The ID of the owner. | [optional] +**namespace** | **string** | The namespace in which the organization name is unique. | [optional] +**name** | **string** | A unique machine name representing the organization. | [optional] +**label** | **string** | The human-readable label of the organization. | [optional] +**country** | **string** | The organization country (2-letter country code). | [optional] +**capabilities** | **string[]** | The organization capabilities. | [optional] +**vendor** | **string** | The vendor. | [optional] +**billingAccountId** | **string** | The Billing Account ID. | [optional] +**billingLegacy** | **bool** | Whether the account is billed with the legacy system. | [optional] +**status** | **string** | The status of the organization. | [optional] +**createdAt** | **\DateTime** | The date and time when the organization was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the organization was last updated. | [optional] +**links** | [**\Upsun\Model\OrganizationLinks**](OrganizationLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAddonsObject.md b/docs/Model/OrganizationAddonsObject.md new file mode 100644 index 00000000..6a197287 --- /dev/null +++ b/docs/Model/OrganizationAddonsObject.md @@ -0,0 +1,11 @@ +# # OrganizationAddonsObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | [**\Upsun\Model\OrganizationAddonsObjectAvailable**](OrganizationAddonsObjectAvailable.md) | | [optional] +**current** | [**\Upsun\Model\OrganizationAddonsObjectCurrent**](OrganizationAddonsObjectCurrent.md) | | [optional] +**upgradesAvailable** | [**\Upsun\Model\OrganizationAddonsObjectUpgradesAvailable**](OrganizationAddonsObjectUpgradesAvailable.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAddonsObjectAvailable.md b/docs/Model/OrganizationAddonsObjectAvailable.md new file mode 100644 index 00000000..093800c3 --- /dev/null +++ b/docs/Model/OrganizationAddonsObjectAvailable.md @@ -0,0 +1,10 @@ +# # OrganizationAddonsObjectAvailable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userManagement** | **array** | Information about the levels of user management that are available. | [optional] +**supportLevel** | **array** | Information about the levels of support available. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAddonsObjectCurrent.md b/docs/Model/OrganizationAddonsObjectCurrent.md new file mode 100644 index 00000000..96382735 --- /dev/null +++ b/docs/Model/OrganizationAddonsObjectCurrent.md @@ -0,0 +1,10 @@ +# # OrganizationAddonsObjectCurrent + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userManagement** | **array** | Information about the type of user management currently selected. | [optional] +**supportLevel** | **array** | Information about the level of support currently selected. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAddonsObjectUpgradesAvailable.md b/docs/Model/OrganizationAddonsObjectUpgradesAvailable.md new file mode 100644 index 00000000..90d0dc59 --- /dev/null +++ b/docs/Model/OrganizationAddonsObjectUpgradesAvailable.md @@ -0,0 +1,10 @@ +# # OrganizationAddonsObjectUpgradesAvailable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userManagement** | **string[]** | Available upgrade options for user management. | [optional] +**supportLevel** | **string[]** | Available upgrade options for support. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAlertConfig.md b/docs/Model/OrganizationAlertConfig.md new file mode 100644 index 00000000..a60327b5 --- /dev/null +++ b/docs/Model/OrganizationAlertConfig.md @@ -0,0 +1,14 @@ +# # OrganizationAlertConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | Type of alert (e.g. \"billing\") | [optional] +**active** | **bool** | Whether the billing alert should be active or not. | [optional] +**alertsSent** | **float** | Number of alerts sent. | [optional] +**lastAlertAt** | **string** | The datetime the alert was last sent. | [optional] +**updatedAt** | **string** | The datetime the alert was last updated. | [optional] +**config** | [**\Upsun\Model\OrganizationAlertConfigConfig**](OrganizationAlertConfigConfig.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAlertConfigConfig.md b/docs/Model/OrganizationAlertConfigConfig.md new file mode 100644 index 00000000..ebf3b11c --- /dev/null +++ b/docs/Model/OrganizationAlertConfigConfig.md @@ -0,0 +1,10 @@ +# # OrganizationAlertConfigConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**threshold** | [**\Upsun\Model\OrganizationAlertConfigConfigThreshold**](OrganizationAlertConfigConfigThreshold.md) | | [optional] +**mode** | **string** | The mode of alert. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationAlertConfigConfigThreshold.md b/docs/Model/OrganizationAlertConfigConfigThreshold.md new file mode 100644 index 00000000..7d9ba62f --- /dev/null +++ b/docs/Model/OrganizationAlertConfigConfigThreshold.md @@ -0,0 +1,12 @@ +# # OrganizationAlertConfigConfigThreshold + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted threshold value. | [optional] +**amount** | **float** | Threshold value. | [optional] +**currencyCode** | **string** | Threshold currency code. | [optional] +**currencySymbol** | **string** | Threshold currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationCarbon.md b/docs/Model/OrganizationCarbon.md new file mode 100644 index 00000000..a8bef632 --- /dev/null +++ b/docs/Model/OrganizationCarbon.md @@ -0,0 +1,12 @@ +# # OrganizationCarbon + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**organizationId** | **string** | The ID of the organization. | [optional] +**meta** | [**\Upsun\Model\MetricsMetadata**](MetricsMetadata.md) | | [optional] +**projects** | [**\Upsun\Model\OrganizationProjectCarbon[]**](OrganizationProjectCarbon.md) | | [optional] +**total** | **float** | The calculated total of the metric for the given interval. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObject.md b/docs/Model/OrganizationEstimationObject.md new file mode 100644 index 00000000..947adafb --- /dev/null +++ b/docs/Model/OrganizationEstimationObject.md @@ -0,0 +1,15 @@ +# # OrganizationEstimationObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**total** | **string** | The total estimated price for the organization. | [optional] +**subTotal** | **string** | The sub total for all projects and sellables. | [optional] +**vouchers** | **string** | The total amount of vouchers. | [optional] +**userLicenses** | [**\Upsun\Model\OrganizationEstimationObjectUserLicenses**](OrganizationEstimationObjectUserLicenses.md) | | [optional] +**userManagement** | **string** | An estimation of the advanced user management sellable cost. | [optional] +**supportLevel** | **string** | The total monthly price for premium support. | [optional] +**subscriptions** | [**\Upsun\Model\OrganizationEstimationObjectSubscriptions**](OrganizationEstimationObjectSubscriptions.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectSubscriptions.md b/docs/Model/OrganizationEstimationObjectSubscriptions.md new file mode 100644 index 00000000..54a521cb --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectSubscriptions.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectSubscriptions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**total** | **string** | The total price for subscriptions. | [optional] +**list** | [**\Upsun\Model\OrganizationEstimationObjectSubscriptionsListInner[]**](OrganizationEstimationObjectSubscriptionsListInner.md) | The list of active subscriptions. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectSubscriptionsListInner.md b/docs/Model/OrganizationEstimationObjectSubscriptionsListInner.md new file mode 100644 index 00000000..2327d355 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectSubscriptionsListInner.md @@ -0,0 +1,12 @@ +# # OrganizationEstimationObjectSubscriptionsListInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**licenseId** | **string** | The id of the subscription. | [optional] +**projectTitle** | **string** | The name of the project. | [optional] +**total** | **string** | The total price for the subscription. | [optional] +**usage** | [**\Upsun\Model\OrganizationEstimationObjectSubscriptionsListInnerUsage**](OrganizationEstimationObjectSubscriptionsListInnerUsage.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.md b/docs/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.md new file mode 100644 index 00000000..c4ad1e56 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.md @@ -0,0 +1,12 @@ +# # OrganizationEstimationObjectSubscriptionsListInnerUsage + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | The total cpu for this subsciption. | [optional] +**memory** | **float** | The total memory for this subsciption. | [optional] +**storage** | **float** | The total storage for this subsciption. | [optional] +**environments** | **int** | The total environments for this subsciption. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicenses.md b/docs/Model/OrganizationEstimationObjectUserLicenses.md new file mode 100644 index 00000000..62f69159 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicenses.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicenses + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**base** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesBase**](OrganizationEstimationObjectUserLicensesBase.md) | | [optional] +**userManagement** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesUserManagement**](OrganizationEstimationObjectUserLicensesUserManagement.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesBase.md b/docs/Model/OrganizationEstimationObjectUserLicensesBase.md new file mode 100644 index 00000000..4df2cb14 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesBase.md @@ -0,0 +1,11 @@ +# # OrganizationEstimationObjectUserLicensesBase + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of base user licenses. | [optional] +**total** | **string** | The total price for base user licenses. | [optional] +**list** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesBaseList**](OrganizationEstimationObjectUserLicensesBaseList.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesBaseList.md b/docs/Model/OrganizationEstimationObjectUserLicensesBaseList.md new file mode 100644 index 00000000..970ce96c --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesBaseList.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesBaseList + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**adminUser** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesBaseListAdminUser**](OrganizationEstimationObjectUserLicensesBaseListAdminUser.md) | | [optional] +**viewerUser** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesBaseListViewerUser**](OrganizationEstimationObjectUserLicensesBaseListViewerUser.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.md b/docs/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.md new file mode 100644 index 00000000..0b80b3d6 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesBaseListAdminUser + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of admin user licenses. | [optional] +**total** | **string** | The total price for admin user licenses. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.md b/docs/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.md new file mode 100644 index 00000000..761fb320 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesBaseListViewerUser + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of viewer user licenses. | [optional] +**total** | **string** | The total price for viewer user licenses. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesUserManagement.md b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagement.md new file mode 100644 index 00000000..80537ffc --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagement.md @@ -0,0 +1,11 @@ +# # OrganizationEstimationObjectUserLicensesUserManagement + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of user_management licenses. | [optional] +**total** | **string** | The total price for user_management licenses. | [optional] +**list** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesUserManagementList**](OrganizationEstimationObjectUserLicensesUserManagementList.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementList.md b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementList.md new file mode 100644 index 00000000..dd829e88 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementList.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesUserManagementList + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**standardManagementUser** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser**](OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.md) | | [optional] +**advancedManagementUser** | [**\Upsun\Model\OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser**](OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.md b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.md new file mode 100644 index 00000000..bc17e6b1 --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of advanced_management_user licenses. | [optional] +**total** | **string** | The total price for advanced_management_user licenses. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.md b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.md new file mode 100644 index 00000000..567eadec --- /dev/null +++ b/docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.md @@ -0,0 +1,10 @@ +# # OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | The number of standard_management_user licenses. | [optional] +**total** | **string** | The total price for standard_management_user licenses. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationInvitation.md b/docs/Model/OrganizationInvitation.md new file mode 100644 index 00000000..d77524ea --- /dev/null +++ b/docs/Model/OrganizationInvitation.md @@ -0,0 +1,17 @@ +# # OrganizationInvitation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the invitation. | [optional] +**state** | **string** | The invitation state. | [optional] +**organizationId** | **string** | The ID of the organization. | [optional] +**email** | **string** | The email address of the invitee. | [optional] +**owner** | [**\Upsun\Model\OrganizationInvitationOwner**](OrganizationInvitationOwner.md) | | [optional] +**createdAt** | **\DateTime** | The date and time when the invitation was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the invitation was last updated. | [optional] +**finishedAt** | **\DateTime** | The date and time when the invitation was finished. | [optional] +**permissions** | **string[]** | The permissions the invitee should be given on the organization. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationInvitationOwner.md b/docs/Model/OrganizationInvitationOwner.md new file mode 100644 index 00000000..ad81d70d --- /dev/null +++ b/docs/Model/OrganizationInvitationOwner.md @@ -0,0 +1,10 @@ +# # OrganizationInvitationOwner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the user. | [optional] +**displayName** | **string** | The user's display name. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinks.md b/docs/Model/OrganizationLinks.md new file mode 100644 index 00000000..6a455f43 --- /dev/null +++ b/docs/Model/OrganizationLinks.md @@ -0,0 +1,23 @@ +# # OrganizationLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\OrganizationLinksSelf**](OrganizationLinksSelf.md) | | [optional] +**update** | [**\Upsun\Model\OrganizationLinksUpdate**](OrganizationLinksUpdate.md) | | [optional] +**delete** | [**\Upsun\Model\OrganizationLinksDelete**](OrganizationLinksDelete.md) | | [optional] +**members** | [**\Upsun\Model\OrganizationLinksMembers**](OrganizationLinksMembers.md) | | [optional] +**createMember** | [**\Upsun\Model\OrganizationLinksCreateMember**](OrganizationLinksCreateMember.md) | | [optional] +**address** | [**\Upsun\Model\OrganizationLinksAddress**](OrganizationLinksAddress.md) | | [optional] +**profile** | [**\Upsun\Model\OrganizationLinksProfile**](OrganizationLinksProfile.md) | | [optional] +**paymentSource** | [**\Upsun\Model\OrganizationLinksPaymentSource**](OrganizationLinksPaymentSource.md) | | [optional] +**orders** | [**\Upsun\Model\OrganizationLinksOrders**](OrganizationLinksOrders.md) | | [optional] +**vouchers** | [**\Upsun\Model\OrganizationLinksVouchers**](OrganizationLinksVouchers.md) | | [optional] +**applyVoucher** | [**\Upsun\Model\OrganizationLinksApplyVoucher**](OrganizationLinksApplyVoucher.md) | | [optional] +**subscriptions** | [**\Upsun\Model\OrganizationLinksSubscriptions**](OrganizationLinksSubscriptions.md) | | [optional] +**createSubscription** | [**\Upsun\Model\OrganizationLinksCreateSubscription**](OrganizationLinksCreateSubscription.md) | | [optional] +**estimateSubscription** | [**\Upsun\Model\OrganizationLinksEstimateSubscription**](OrganizationLinksEstimateSubscription.md) | | [optional] +**mfaEnforcement** | [**\Upsun\Model\OrganizationLinksMfaEnforcement**](OrganizationLinksMfaEnforcement.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksAddress.md b/docs/Model/OrganizationLinksAddress.md new file mode 100644 index 00000000..5c39ca4f --- /dev/null +++ b/docs/Model/OrganizationLinksAddress.md @@ -0,0 +1,9 @@ +# # OrganizationLinksAddress + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksApplyVoucher.md b/docs/Model/OrganizationLinksApplyVoucher.md new file mode 100644 index 00000000..b4493073 --- /dev/null +++ b/docs/Model/OrganizationLinksApplyVoucher.md @@ -0,0 +1,10 @@ +# # OrganizationLinksApplyVoucher + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksCreateMember.md b/docs/Model/OrganizationLinksCreateMember.md new file mode 100644 index 00000000..47ea3c18 --- /dev/null +++ b/docs/Model/OrganizationLinksCreateMember.md @@ -0,0 +1,10 @@ +# # OrganizationLinksCreateMember + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksCreateSubscription.md b/docs/Model/OrganizationLinksCreateSubscription.md new file mode 100644 index 00000000..41b94798 --- /dev/null +++ b/docs/Model/OrganizationLinksCreateSubscription.md @@ -0,0 +1,10 @@ +# # OrganizationLinksCreateSubscription + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksDelete.md b/docs/Model/OrganizationLinksDelete.md new file mode 100644 index 00000000..c0e9a644 --- /dev/null +++ b/docs/Model/OrganizationLinksDelete.md @@ -0,0 +1,10 @@ +# # OrganizationLinksDelete + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksEstimateSubscription.md b/docs/Model/OrganizationLinksEstimateSubscription.md new file mode 100644 index 00000000..30dda516 --- /dev/null +++ b/docs/Model/OrganizationLinksEstimateSubscription.md @@ -0,0 +1,9 @@ +# # OrganizationLinksEstimateSubscription + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksMembers.md b/docs/Model/OrganizationLinksMembers.md new file mode 100644 index 00000000..a6cd1883 --- /dev/null +++ b/docs/Model/OrganizationLinksMembers.md @@ -0,0 +1,9 @@ +# # OrganizationLinksMembers + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksMfaEnforcement.md b/docs/Model/OrganizationLinksMfaEnforcement.md new file mode 100644 index 00000000..402eef54 --- /dev/null +++ b/docs/Model/OrganizationLinksMfaEnforcement.md @@ -0,0 +1,9 @@ +# # OrganizationLinksMfaEnforcement + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksOrders.md b/docs/Model/OrganizationLinksOrders.md new file mode 100644 index 00000000..40932b82 --- /dev/null +++ b/docs/Model/OrganizationLinksOrders.md @@ -0,0 +1,9 @@ +# # OrganizationLinksOrders + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksPaymentSource.md b/docs/Model/OrganizationLinksPaymentSource.md new file mode 100644 index 00000000..f05728cd --- /dev/null +++ b/docs/Model/OrganizationLinksPaymentSource.md @@ -0,0 +1,9 @@ +# # OrganizationLinksPaymentSource + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksProfile.md b/docs/Model/OrganizationLinksProfile.md new file mode 100644 index 00000000..4c861e64 --- /dev/null +++ b/docs/Model/OrganizationLinksProfile.md @@ -0,0 +1,9 @@ +# # OrganizationLinksProfile + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksSelf.md b/docs/Model/OrganizationLinksSelf.md new file mode 100644 index 00000000..2400177a --- /dev/null +++ b/docs/Model/OrganizationLinksSelf.md @@ -0,0 +1,9 @@ +# # OrganizationLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksSubscriptions.md b/docs/Model/OrganizationLinksSubscriptions.md new file mode 100644 index 00000000..e56fcccc --- /dev/null +++ b/docs/Model/OrganizationLinksSubscriptions.md @@ -0,0 +1,9 @@ +# # OrganizationLinksSubscriptions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksUpdate.md b/docs/Model/OrganizationLinksUpdate.md new file mode 100644 index 00000000..e7209f29 --- /dev/null +++ b/docs/Model/OrganizationLinksUpdate.md @@ -0,0 +1,10 @@ +# # OrganizationLinksUpdate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationLinksVouchers.md b/docs/Model/OrganizationLinksVouchers.md new file mode 100644 index 00000000..c8d5f880 --- /dev/null +++ b/docs/Model/OrganizationLinksVouchers.md @@ -0,0 +1,9 @@ +# # OrganizationLinksVouchers + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMember.md b/docs/Model/OrganizationMember.md new file mode 100644 index 00000000..fd1d25fd --- /dev/null +++ b/docs/Model/OrganizationMember.md @@ -0,0 +1,17 @@ +# # OrganizationMember + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the user. | [optional] +**organizationId** | **string** | The ID of the organization. | [optional] +**userId** | **string** | The ID of the user. | [optional] +**permissions** | **string[]** | The organization member permissions. | [optional] +**level** | **string** | Access level of the member. | [optional] +**owner** | **bool** | Whether the member is the organization owner. | [optional] +**createdAt** | **\DateTime** | The date and time when the member was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the member was last updated. | [optional] +**links** | [**\Upsun\Model\OrganizationMemberLinks**](OrganizationMemberLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMemberLinks.md b/docs/Model/OrganizationMemberLinks.md new file mode 100644 index 00000000..a937b460 --- /dev/null +++ b/docs/Model/OrganizationMemberLinks.md @@ -0,0 +1,11 @@ +# # OrganizationMemberLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\OrganizationMemberLinksSelf**](OrganizationMemberLinksSelf.md) | | [optional] +**update** | [**\Upsun\Model\OrganizationMemberLinksUpdate**](OrganizationMemberLinksUpdate.md) | | [optional] +**delete** | [**\Upsun\Model\OrganizationMemberLinksDelete**](OrganizationMemberLinksDelete.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMemberLinksDelete.md b/docs/Model/OrganizationMemberLinksDelete.md new file mode 100644 index 00000000..97941d72 --- /dev/null +++ b/docs/Model/OrganizationMemberLinksDelete.md @@ -0,0 +1,10 @@ +# # OrganizationMemberLinksDelete + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMemberLinksSelf.md b/docs/Model/OrganizationMemberLinksSelf.md new file mode 100644 index 00000000..a13fb9f1 --- /dev/null +++ b/docs/Model/OrganizationMemberLinksSelf.md @@ -0,0 +1,9 @@ +# # OrganizationMemberLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMemberLinksUpdate.md b/docs/Model/OrganizationMemberLinksUpdate.md new file mode 100644 index 00000000..766b319e --- /dev/null +++ b/docs/Model/OrganizationMemberLinksUpdate.md @@ -0,0 +1,10 @@ +# # OrganizationMemberLinksUpdate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationMfaEnforcement.md b/docs/Model/OrganizationMfaEnforcement.md new file mode 100644 index 00000000..1509afc4 --- /dev/null +++ b/docs/Model/OrganizationMfaEnforcement.md @@ -0,0 +1,9 @@ +# # OrganizationMfaEnforcement + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enforceMfa** | **bool** | Whether the MFA enforcement is enabled. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProject.md b/docs/Model/OrganizationProject.md new file mode 100644 index 00000000..39583edc --- /dev/null +++ b/docs/Model/OrganizationProject.md @@ -0,0 +1,27 @@ +# # OrganizationProject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the project. | [optional] +**organizationId** | **string** | The ID of the organization. | [optional] +**subscriptionId** | **string** | The ID of the subscription. | [optional] +**vendor** | **string** | Vendor of the project. | [optional] +**region** | **string** | The machine name of the region where the project is located. | [optional] +**title** | **string** | The title of the project. | [optional] +**type** | [**\Upsun\Model\ProjectType**](ProjectType.md) | | [optional] +**plan** | **string** | The project plan. | [optional] +**timezone** | **string** | Timezone of the project. | [optional] +**defaultBranch** | **string** | Default branch. | [optional] +**status** | [**\Upsun\Model\ProjectStatus**](ProjectStatus.md) | | [optional] +**trialPlan** | **bool** | Whether the project is currently on a trial plan. | [optional] +**projectUi** | **string** | The URL for the project's user interface. | [optional] +**locked** | **bool** | Locked | [optional] +**cseNotes** | **string** | CSE notes. | [optional] +**dedicatedTag** | **string** | Dedicated tag. | [optional] +**createdAt** | **\DateTime** | The date and time when the resource was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the resource was last updated. | [optional] +**links** | [**\Upsun\Model\OrganizationProjectLinks**](OrganizationProjectLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectCarbon.md b/docs/Model/OrganizationProjectCarbon.md new file mode 100644 index 00000000..3026128e --- /dev/null +++ b/docs/Model/OrganizationProjectCarbon.md @@ -0,0 +1,12 @@ +# # OrganizationProjectCarbon + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectId** | **string** | The ID of the project. | [optional] +**projectTitle** | **string** | The title of the project. | [optional] +**values** | [**\Upsun\Model\MetricsValue[]**](MetricsValue.md) | | [optional] +**total** | **float** | The calculated total of the metric for the given interval. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinks.md b/docs/Model/OrganizationProjectLinks.md new file mode 100644 index 00000000..a5438e2f --- /dev/null +++ b/docs/Model/OrganizationProjectLinks.md @@ -0,0 +1,13 @@ +# # OrganizationProjectLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\OrganizationProjectLinksSelf**](OrganizationProjectLinksSelf.md) | | [optional] +**update** | [**\Upsun\Model\OrganizationProjectLinksUpdate**](OrganizationProjectLinksUpdate.md) | | [optional] +**delete** | [**\Upsun\Model\OrganizationProjectLinksDelete**](OrganizationProjectLinksDelete.md) | | [optional] +**activities** | [**\Upsun\Model\OrganizationProjectLinksActivities**](OrganizationProjectLinksActivities.md) | | [optional] +**addons** | [**\Upsun\Model\OrganizationProjectLinksAddons**](OrganizationProjectLinksAddons.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinksActivities.md b/docs/Model/OrganizationProjectLinksActivities.md new file mode 100644 index 00000000..09fda8c0 --- /dev/null +++ b/docs/Model/OrganizationProjectLinksActivities.md @@ -0,0 +1,9 @@ +# # OrganizationProjectLinksActivities + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinksAddons.md b/docs/Model/OrganizationProjectLinksAddons.md new file mode 100644 index 00000000..c586bd01 --- /dev/null +++ b/docs/Model/OrganizationProjectLinksAddons.md @@ -0,0 +1,9 @@ +# # OrganizationProjectLinksAddons + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinksDelete.md b/docs/Model/OrganizationProjectLinksDelete.md new file mode 100644 index 00000000..3acea37d --- /dev/null +++ b/docs/Model/OrganizationProjectLinksDelete.md @@ -0,0 +1,10 @@ +# # OrganizationProjectLinksDelete + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinksSelf.md b/docs/Model/OrganizationProjectLinksSelf.md new file mode 100644 index 00000000..aedda1dc --- /dev/null +++ b/docs/Model/OrganizationProjectLinksSelf.md @@ -0,0 +1,9 @@ +# # OrganizationProjectLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationProjectLinksUpdate.md b/docs/Model/OrganizationProjectLinksUpdate.md new file mode 100644 index 00000000..b14b10ff --- /dev/null +++ b/docs/Model/OrganizationProjectLinksUpdate.md @@ -0,0 +1,10 @@ +# # OrganizationProjectLinksUpdate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationReference.md b/docs/Model/OrganizationReference.md new file mode 100644 index 00000000..eb859a91 --- /dev/null +++ b/docs/Model/OrganizationReference.md @@ -0,0 +1,16 @@ +# # OrganizationReference + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the organization. | [optional] +**type** | **string** | The type of the organization. | [optional] +**ownerId** | **string** | The ID of the owner. | [optional] +**name** | **string** | A unique machine name representing the organization. | [optional] +**label** | **string** | The human-readable label of the organization. | [optional] +**vendor** | **string** | The vendor. | [optional] +**createdAt** | **\DateTime** | The date and time when the organization was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the organization was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OrganizationSSOConfig.md b/docs/Model/OrganizationSSOConfig.md new file mode 100644 index 00000000..2c1e5acb --- /dev/null +++ b/docs/Model/OrganizationSSOConfig.md @@ -0,0 +1,14 @@ +# # OrganizationSSOConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**providerType** | **string** | SSO provider type. | [optional] +**domain** | **string** | Google hosted domain. | [optional] +**organizationId** | **string** | Organization ID. | [optional] +**enforced** | **bool** | Whether the configuration is enforced for all the organization members. | [optional] +**createdAt** | **\DateTime** | The date and time when the SSO configuration was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the SSO configuration was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OutboundFirewall.md b/docs/Model/OutboundFirewall.md new file mode 100644 index 00000000..b080c1cb --- /dev/null +++ b/docs/Model/OutboundFirewall.md @@ -0,0 +1,9 @@ +# # OutboundFirewall + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, outbound firewall can be used. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OutboundFirewallRestrictionsInner.md b/docs/Model/OutboundFirewallRestrictionsInner.md new file mode 100644 index 00000000..58084ca3 --- /dev/null +++ b/docs/Model/OutboundFirewallRestrictionsInner.md @@ -0,0 +1,12 @@ +# # OutboundFirewallRestrictionsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**protocol** | **string** | The IP protocol to apply the restriction on. | +**ips** | **string[]** | The IP range in CIDR notation to apply the restriction on. | +**domains** | **string[]** | Domains of the restriction. | +**ports** | **int[]** | The port to apply the restriction on. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/OwnerInfo.md b/docs/Model/OwnerInfo.md new file mode 100644 index 00000000..dd842a79 --- /dev/null +++ b/docs/Model/OwnerInfo.md @@ -0,0 +1,11 @@ +# # OwnerInfo + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | Type of the owner, usually 'user'. | [optional] +**username** | **string** | The username of the owner. | [optional] +**displayName** | **string** | The full name of the owner. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PagerDutyIntegration.md b/docs/Model/PagerDutyIntegration.md new file mode 100644 index 00000000..bc000bf9 --- /dev/null +++ b/docs/Model/PagerDutyIntegration.md @@ -0,0 +1,13 @@ +# # PagerDutyIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**routingKey** | **string** | The PagerDuty routing key | +**id** | **string** | The identifier of PagerDutyIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PagerDutyIntegrationCreateInput.md b/docs/Model/PagerDutyIntegrationCreateInput.md new file mode 100644 index 00000000..a55461ba --- /dev/null +++ b/docs/Model/PagerDutyIntegrationCreateInput.md @@ -0,0 +1,10 @@ +# # PagerDutyIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**routingKey** | **string** | The PagerDuty routing key | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PagerDutyIntegrationPatch.md b/docs/Model/PagerDutyIntegrationPatch.md new file mode 100644 index 00000000..5b8ab7a5 --- /dev/null +++ b/docs/Model/PagerDutyIntegrationPatch.md @@ -0,0 +1,10 @@ +# # PagerDutyIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**routingKey** | **string** | The PagerDuty routing key | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PathValue.md b/docs/Model/PathValue.md new file mode 100644 index 00000000..36bdd643 --- /dev/null +++ b/docs/Model/PathValue.md @@ -0,0 +1,14 @@ +# # PathValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**regexp** | **bool** | Whether the path is a regular expression. | +**to** | **string** | The URL to redirect to. | +**prefix** | **bool** | Whether to redirect all the paths that start with the path. | +**appendSuffix** | **bool** | Whether to append the incoming suffix to the redirected URL. | +**code** | **int** | The redirect code to use. | +**expires** | **string** | The amount of time, in seconds, to cache the redirects. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PlanRecords.md b/docs/Model/PlanRecords.md new file mode 100644 index 00000000..f9c76547 --- /dev/null +++ b/docs/Model/PlanRecords.md @@ -0,0 +1,17 @@ +# # PlanRecords + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The unique ID of the plan record. | [optional] +**owner** | **string** | The UUID of the owner. | [optional] +**subscriptionId** | **string** | The ID of the subscription this record pertains to. | [optional] +**sku** | **string** | The product SKU of the plan that this record represents. | [optional] +**plan** | **string** | The machine name of the plan that this record represents. | [optional] +**options** | **string[]** | | [optional] +**start** | **\DateTime** | The start timestamp of this plan record (ISO 8601). | [optional] +**end** | **\DateTime** | The end timestamp of this plan record (ISO 8601). | [optional] +**status** | **string** | The status of the subscription during this record: active or suspended. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PreServiceResourcesOverridesValue.md b/docs/Model/PreServiceResourcesOverridesValue.md new file mode 100644 index 00000000..beaac634 --- /dev/null +++ b/docs/Model/PreServiceResourcesOverridesValue.md @@ -0,0 +1,11 @@ +# # PreServiceResourcesOverridesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpu** | **float** | | +**memory** | **int** | | +**disk** | **int** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PreflightChecks.md b/docs/Model/PreflightChecks.md new file mode 100644 index 00000000..e2376899 --- /dev/null +++ b/docs/Model/PreflightChecks.md @@ -0,0 +1,10 @@ +# # PreflightChecks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether the preflight security blocks are enabled. | +**ignoredRules** | **string[]** | Specific rules to ignore during preflight security checks. See the documentation for options. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PrepaymentObject.md b/docs/Model/PrepaymentObject.md new file mode 100644 index 00000000..20daca07 --- /dev/null +++ b/docs/Model/PrepaymentObject.md @@ -0,0 +1,9 @@ +# # PrepaymentObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**prepayment** | [**\Upsun\Model\PrepaymentObjectPrepayment**](PrepaymentObjectPrepayment.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PrepaymentObjectPrepayment.md b/docs/Model/PrepaymentObjectPrepayment.md new file mode 100644 index 00000000..159a3d00 --- /dev/null +++ b/docs/Model/PrepaymentObjectPrepayment.md @@ -0,0 +1,13 @@ +# # PrepaymentObjectPrepayment + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**organizationId** | **string** | Organization ID | [optional] +**balance** | [**\Upsun\Model\PrepaymentObjectPrepaymentBalance**](PrepaymentObjectPrepaymentBalance.md) | | [optional] +**lastUpdatedAt** | **string** | The date the prepayment balance was last updated. | [optional] +**sufficient** | **bool** | Whether the prepayment balance is enough to cover the upcoming order. | [optional] +**fallback** | **string** | The fallback payment method, if any, to be used in case prepayment balance is not enough to cover an order. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PrepaymentObjectPrepaymentBalance.md b/docs/Model/PrepaymentObjectPrepaymentBalance.md new file mode 100644 index 00000000..d46a7a20 --- /dev/null +++ b/docs/Model/PrepaymentObjectPrepaymentBalance.md @@ -0,0 +1,12 @@ +# # PrepaymentObjectPrepaymentBalance + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted balance. | [optional] +**amount** | **float** | The balance amount. | [optional] +**currencyCode** | **string** | The balance currency code. | [optional] +**currencySymbol** | **string** | The balance currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PrepaymentTransactionObject.md b/docs/Model/PrepaymentTransactionObject.md new file mode 100644 index 00000000..b6f8288e --- /dev/null +++ b/docs/Model/PrepaymentTransactionObject.md @@ -0,0 +1,15 @@ +# # PrepaymentTransactionObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**orderId** | **string** | Order ID | [optional] +**message** | **string** | The message associated with transaction. | [optional] +**status** | **string** | Whether the transactions was successful or a failure. | [optional] +**amount** | [**\Upsun\Model\PrepaymentTransactionObjectAmount**](PrepaymentTransactionObjectAmount.md) | | [optional] +**created** | **string** | Time the transaction was created. | [optional] +**updated** | **string** | Time the transaction was last updated. | [optional] +**expireDate** | **string** | The expiration date of the transaction (deposits only). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/PrepaymentTransactionObjectAmount.md b/docs/Model/PrepaymentTransactionObjectAmount.md new file mode 100644 index 00000000..5ba07b03 --- /dev/null +++ b/docs/Model/PrepaymentTransactionObjectAmount.md @@ -0,0 +1,12 @@ +# # PrepaymentTransactionObjectAmount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted balance. | [optional] +**amount** | **float** | The balance amount. | [optional] +**currencyCode** | **string** | The balance currency code. | [optional] +**currencySymbol** | **string** | The balance currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProdDomainStorage.md b/docs/Model/ProdDomainStorage.md new file mode 100644 index 00000000..5050dbfe --- /dev/null +++ b/docs/Model/ProdDomainStorage.md @@ -0,0 +1,17 @@ +# # ProdDomainStorage + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**id** | **string** | The identifier of ProdDomainStorage | [optional] +**project** | **string** | | [optional] +**registeredName** | **string** | | [optional] +**isDefault** | **bool** | Is this domain default | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProdDomainStorageCreateInput.md b/docs/Model/ProdDomainStorageCreateInput.md new file mode 100644 index 00000000..9f78d60d --- /dev/null +++ b/docs/Model/ProdDomainStorageCreateInput.md @@ -0,0 +1,11 @@ +# # ProdDomainStorageCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isDefault** | **bool** | Is this domain default | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProdDomainStoragePatch.md b/docs/Model/ProdDomainStoragePatch.md new file mode 100644 index 00000000..81f0346e --- /dev/null +++ b/docs/Model/ProdDomainStoragePatch.md @@ -0,0 +1,10 @@ +# # ProdDomainStoragePatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isDefault** | **bool** | Is this domain default | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProductionResources.md b/docs/Model/ProductionResources.md new file mode 100644 index 00000000..00a28ea6 --- /dev/null +++ b/docs/Model/ProductionResources.md @@ -0,0 +1,12 @@ +# # ProductionResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**legacyDevelopment** | **bool** | Enable legacy development sizing for this environment type. | +**maxCpu** | **float** | Maximum number of allocated CPU units. | +**maxMemory** | **int** | Maximum amount of allocated RAM. | +**maxEnvironments** | **int** | Maximum number of environments | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Profile.md b/docs/Model/Profile.md new file mode 100644 index 00000000..aebfadf9 --- /dev/null +++ b/docs/Model/Profile.md @@ -0,0 +1,31 @@ +# # Profile + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The user's unique ID. | [optional] +**displayName** | **string** | The user's display name. | [optional] +**email** | **string** | The user's email address. | [optional] +**username** | **string** | The user's username. | [optional] +**type** | **string** | The user's type (user/organization). | [optional] +**picture** | **string** | The URL of the user's picture. | [optional] +**companyType** | **string** | The company type. | [optional] +**companyName** | **string** | The name of the company. | [optional] +**currency** | **string** | A 3-letter ISO 4217 currency code (assigned according to the billing address). | [optional] +**vatNumber** | **string** | The vat number of the user. | [optional] +**companyRole** | **string** | The role of the user in the company. | [optional] +**websiteUrl** | **string** | The user or company website. | [optional] +**newUi** | **bool** | Whether the new UI features are enabled for this user. | [optional] +**uiColorscheme** | **string** | The user's chosen color scheme for user interfaces. | [optional] +**defaultCatalog** | **string** | The URL of a catalog file which overrides the default. | [optional] +**projectOptionsUrl** | **string** | The URL of an account-wide project options file. | [optional] +**marketing** | **bool** | Flag if the user agreed to receive marketing communication. | [optional] +**createdAt** | **\DateTime** | The timestamp representing when the user account was created. | [optional] +**updatedAt** | **\DateTime** | The timestamp representing when the user account was last modified. | [optional] +**billingContact** | **string** | The e-mail address of a contact to whom billing notices will be sent. | [optional] +**securityContact** | **string** | The e-mail address of a contact to whom security notices will be sent. | [optional] +**currentTrial** | [**\Upsun\Model\ProfileCurrentTrial**](ProfileCurrentTrial.md) | | [optional] +**invoiced** | **bool** | The customer is invoiced. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrial.md b/docs/Model/ProfileCurrentTrial.md new file mode 100644 index 00000000..59c48fb2 --- /dev/null +++ b/docs/Model/ProfileCurrentTrial.md @@ -0,0 +1,19 @@ +# # ProfileCurrentTrial + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**active** | **bool** | The trial active status. | [optional] +**created** | **\DateTime** | The trial creation date. | [optional] +**description** | **string** | The trial description. | [optional] +**expiration** | **\DateTime** | The trial expiration-date. | [optional] +**current** | [**\Upsun\Model\ProfileCurrentTrialCurrent**](ProfileCurrentTrialCurrent.md) | | [optional] +**spend** | [**\Upsun\Model\ProfileCurrentTrialSpend**](ProfileCurrentTrialSpend.md) | | [optional] +**spendRemaining** | [**\Upsun\Model\ProfileCurrentTrialSpendRemaining**](ProfileCurrentTrialSpendRemaining.md) | | [optional] +**projects** | [**\Upsun\Model\ProfileCurrentTrialProjects**](ProfileCurrentTrialProjects.md) | | [optional] +**pendingVerification** | **string** | Required verification method (if applicable). | [optional] +**model** | **string** | The trial trial model. | [optional] +**daysRemaining** | **int** | The amount of days until the trial expires. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrialCurrent.md b/docs/Model/ProfileCurrentTrialCurrent.md new file mode 100644 index 00000000..2e740a1d --- /dev/null +++ b/docs/Model/ProfileCurrentTrialCurrent.md @@ -0,0 +1,12 @@ +# # ProfileCurrentTrialCurrent + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The total amount formatted. | [optional] +**amount** | **string** | The total amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrialProjects.md b/docs/Model/ProfileCurrentTrialProjects.md new file mode 100644 index 00000000..dfde4cf0 --- /dev/null +++ b/docs/Model/ProfileCurrentTrialProjects.md @@ -0,0 +1,11 @@ +# # ProfileCurrentTrialProjects + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | Trial project ID | [optional] +**name** | **string** | Trial project name | [optional] +**total** | [**\Upsun\Model\ProfileCurrentTrialProjectsTotal**](ProfileCurrentTrialProjectsTotal.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrialProjectsTotal.md b/docs/Model/ProfileCurrentTrialProjectsTotal.md new file mode 100644 index 00000000..586961c8 --- /dev/null +++ b/docs/Model/ProfileCurrentTrialProjectsTotal.md @@ -0,0 +1,12 @@ +# # ProfileCurrentTrialProjectsTotal + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**amount** | **int** | Trial project cost | [optional] +**currencyCode** | **string** | Currency code | [optional] +**currencySymbol** | **string** | Currency symbol | [optional] +**formatted** | **string** | Trial project cost formatted with currency sign | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrialSpend.md b/docs/Model/ProfileCurrentTrialSpend.md new file mode 100644 index 00000000..fbe76176 --- /dev/null +++ b/docs/Model/ProfileCurrentTrialSpend.md @@ -0,0 +1,12 @@ +# # ProfileCurrentTrialSpend + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The total amount formatted. | [optional] +**amount** | **string** | The total amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProfileCurrentTrialSpendRemaining.md b/docs/Model/ProfileCurrentTrialSpendRemaining.md new file mode 100644 index 00000000..8a956ad5 --- /dev/null +++ b/docs/Model/ProfileCurrentTrialSpendRemaining.md @@ -0,0 +1,13 @@ +# # ProfileCurrentTrialSpendRemaining + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | The total amount formatted. | [optional] +**amount** | **string** | The total amount. | [optional] +**currency** | **string** | The currency. | [optional] +**currencySymbol** | **string** | Currency symbol. | [optional] +**unlimited** | **bool** | Spend limit is ignored (in favor of resource limitations). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Project.md b/docs/Model/Project.md new file mode 100644 index 00000000..b7b7fc4a --- /dev/null +++ b/docs/Model/Project.md @@ -0,0 +1,24 @@ +# # Project + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Project | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**title** | **string** | The title of the project | +**description** | **string** | The description of the project | +**owner** | **string** | The owner of the project | +**namespace** | **string** | The namespace the project belongs in | +**organization** | **string** | The organization the project belongs in | +**defaultBranch** | **string** | The default branch of the project | +**status** | [**\Upsun\Model\Status**](Status.md) | | +**timezone** | **string** | Timezone of the project | +**region** | **string** | The region of the project | +**repository** | [**\Upsun\Model\RepositoryInformation**](RepositoryInformation.md) | | +**defaultDomain** | **string** | The default domain of the project | +**subscription** | [**\Upsun\Model\SubscriptionInformation**](SubscriptionInformation.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddon.md b/docs/Model/ProjectAddon.md new file mode 100644 index 00000000..a0c76151 --- /dev/null +++ b/docs/Model/ProjectAddon.md @@ -0,0 +1,16 @@ +# # ProjectAddon + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the add-on. | +**type** | **string** | The type of the add-on. | +**sku** | **string** | The SKU of the add-on. | +**quantity** | **int** | The quantity of the add-on. | +**projectId** | **string** | The ID of the project. | [optional] +**createdAt** | **\DateTime** | The date and time when the resource was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the resource was last updated. | [optional] +**links** | [**\Upsun\Model\ProjectAddonBaseLinks**](ProjectAddonBaseLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonBase.md b/docs/Model/ProjectAddonBase.md new file mode 100644 index 00000000..e05a87fb --- /dev/null +++ b/docs/Model/ProjectAddonBase.md @@ -0,0 +1,14 @@ +# # ProjectAddonBase + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the add-on. | +**type** | **string** | The type of the add-on. | +**projectId** | **string** | The ID of the project. | [optional] +**createdAt** | **\DateTime** | The date and time when the resource was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the resource was last updated. | [optional] +**links** | [**\Upsun\Model\ProjectAddonBaseLinks**](ProjectAddonBaseLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonBaseLinks.md b/docs/Model/ProjectAddonBaseLinks.md new file mode 100644 index 00000000..e85191ad --- /dev/null +++ b/docs/Model/ProjectAddonBaseLinks.md @@ -0,0 +1,11 @@ +# # ProjectAddonBaseLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\ProjectAddonBaseLinksSelf**](ProjectAddonBaseLinksSelf.md) | | [optional] +**update** | [**\Upsun\Model\ProjectAddonBaseLinksUpdate**](ProjectAddonBaseLinksUpdate.md) | | [optional] +**delete** | [**\Upsun\Model\ProjectAddonBaseLinksDelete**](ProjectAddonBaseLinksDelete.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonBaseLinksDelete.md b/docs/Model/ProjectAddonBaseLinksDelete.md new file mode 100644 index 00000000..9d6d79ef --- /dev/null +++ b/docs/Model/ProjectAddonBaseLinksDelete.md @@ -0,0 +1,10 @@ +# # ProjectAddonBaseLinksDelete + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonBaseLinksSelf.md b/docs/Model/ProjectAddonBaseLinksSelf.md new file mode 100644 index 00000000..8ece73f8 --- /dev/null +++ b/docs/Model/ProjectAddonBaseLinksSelf.md @@ -0,0 +1,9 @@ +# # ProjectAddonBaseLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonBaseLinksUpdate.md b/docs/Model/ProjectAddonBaseLinksUpdate.md new file mode 100644 index 00000000..67fe2a61 --- /dev/null +++ b/docs/Model/ProjectAddonBaseLinksUpdate.md @@ -0,0 +1,10 @@ +# # ProjectAddonBaseLinksUpdate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonWithQuantityFields.md b/docs/Model/ProjectAddonWithQuantityFields.md new file mode 100644 index 00000000..2a43fd4e --- /dev/null +++ b/docs/Model/ProjectAddonWithQuantityFields.md @@ -0,0 +1,9 @@ +# # ProjectAddonWithQuantityFields + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**quantity** | **int** | The quantity of the add-on. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectAddonWithSkuFields.md b/docs/Model/ProjectAddonWithSkuFields.md new file mode 100644 index 00000000..76387d98 --- /dev/null +++ b/docs/Model/ProjectAddonWithSkuFields.md @@ -0,0 +1,9 @@ +# # ProjectAddonWithSkuFields + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**sku** | **string** | The SKU of the add-on. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectCapabilities.md b/docs/Model/ProjectCapabilities.md new file mode 100644 index 00000000..2c36b49a --- /dev/null +++ b/docs/Model/ProjectCapabilities.md @@ -0,0 +1,21 @@ +# # ProjectCapabilities + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**metrics** | [**\Upsun\Model\Metrics**](Metrics.md) | | +**logsForwarding** | [**\Upsun\Model\LogsForwarding**](LogsForwarding.md) | | +**guaranteedResources** | [**\Upsun\Model\GuaranteedResources**](GuaranteedResources.md) | | +**images** | **array>** | | +**instanceLimit** | **int** | Maximum number of instance per service | +**buildResources** | [**\Upsun\Model\BuildResources**](BuildResources.md) | | +**dataRetention** | [**\Upsun\Model\DataRetention**](DataRetention.md) | | +**autoscaling** | [**\Upsun\Model\Autoscaling**](Autoscaling.md) | | +**customDomains** | [**\Upsun\Model\CustomDomains**](CustomDomains.md) | | [optional] +**sourceOperations** | [**\Upsun\Model\SourceOperations**](SourceOperations.md) | | [optional] +**runtimeOperations** | [**\Upsun\Model\RuntimeOperations**](RuntimeOperations.md) | | [optional] +**outboundFirewall** | [**\Upsun\Model\OutboundFirewall**](OutboundFirewall.md) | | [optional] +**integrations** | [**\Upsun\Model\Integrations**](Integrations.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectCarbon.md b/docs/Model/ProjectCarbon.md new file mode 100644 index 00000000..d15dc7df --- /dev/null +++ b/docs/Model/ProjectCarbon.md @@ -0,0 +1,13 @@ +# # ProjectCarbon + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectId** | **string** | The ID of the project. | [optional] +**projectTitle** | **string** | The title of the project. | [optional] +**meta** | [**\Upsun\Model\MetricsMetadata**](MetricsMetadata.md) | | [optional] +**values** | [**\Upsun\Model\MetricsValue[]**](MetricsValue.md) | | [optional] +**total** | **float** | The calculated total of the metric for the given interval. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectInfo.md b/docs/Model/ProjectInfo.md new file mode 100644 index 00000000..ad8806cf --- /dev/null +++ b/docs/Model/ProjectInfo.md @@ -0,0 +1,14 @@ +# # ProjectInfo + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | | +**name** | **string** | | +**namespace** | **string** | | +**organization** | **string** | | +**capabilities** | **object** | | +**settings** | **object** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectInvitation.md b/docs/Model/ProjectInvitation.md new file mode 100644 index 00000000..f7a890ff --- /dev/null +++ b/docs/Model/ProjectInvitation.md @@ -0,0 +1,18 @@ +# # ProjectInvitation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the invitation. | [optional] +**state** | **string** | The invitation state. | [optional] +**projectId** | **string** | The ID of the project. | [optional] +**role** | **string** | The project role. | [optional] +**email** | **string** | The email address of the invitee. | [optional] +**owner** | [**\Upsun\Model\OrganizationInvitationOwner**](OrganizationInvitationOwner.md) | | [optional] +**createdAt** | **\DateTime** | The date and time when the invitation was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the invitation was last updated. | [optional] +**finishedAt** | **\DateTime** | The date and time when the invitation was finished. | [optional] +**environments** | [**\Upsun\Model\ProjectInvitationEnvironmentsInner[]**](ProjectInvitationEnvironmentsInner.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectInvitationEnvironmentsInner.md b/docs/Model/ProjectInvitationEnvironmentsInner.md new file mode 100644 index 00000000..cb46aae5 --- /dev/null +++ b/docs/Model/ProjectInvitationEnvironmentsInner.md @@ -0,0 +1,12 @@ +# # ProjectInvitationEnvironmentsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the environment. | [optional] +**type** | **string** | The environment type. | [optional] +**role** | **string** | The environment role. | [optional] +**title** | **string** | The environment title. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectOptions.md b/docs/Model/ProjectOptions.md new file mode 100644 index 00000000..3db99f75 --- /dev/null +++ b/docs/Model/ProjectOptions.md @@ -0,0 +1,13 @@ +# # ProjectOptions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**defaults** | [**\Upsun\Model\ProjectOptionsDefaults**](ProjectOptionsDefaults.md) | | [optional] +**enforced** | [**\Upsun\Model\ProjectOptionsEnforced**](ProjectOptionsEnforced.md) | | [optional] +**regions** | **string[]** | The available regions. | [optional] +**plans** | **string[]** | The available plans. | [optional] +**billing** | **object** | The billing settings. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectOptionsDefaults.md b/docs/Model/ProjectOptionsDefaults.md new file mode 100644 index 00000000..08645d5b --- /dev/null +++ b/docs/Model/ProjectOptionsDefaults.md @@ -0,0 +1,12 @@ +# # ProjectOptionsDefaults + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**settings** | **object** | The project settings. | [optional] +**variables** | **object** | The project variables. | [optional] +**access** | **object** | The project access list. | [optional] +**capabilities** | **object** | The project capabilities. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectOptionsEnforced.md b/docs/Model/ProjectOptionsEnforced.md new file mode 100644 index 00000000..75e58b96 --- /dev/null +++ b/docs/Model/ProjectOptionsEnforced.md @@ -0,0 +1,10 @@ +# # ProjectOptionsEnforced + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**settings** | **object** | The project settings. | [optional] +**capabilities** | **object** | The project capabilities. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectPatch.md b/docs/Model/ProjectPatch.md new file mode 100644 index 00000000..4f67fc98 --- /dev/null +++ b/docs/Model/ProjectPatch.md @@ -0,0 +1,15 @@ +# # ProjectPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**title** | **string** | The title of the project | [optional] +**description** | **string** | The description of the project | [optional] +**defaultBranch** | **string** | The default branch of the project | [optional] +**timezone** | **string** | Timezone of the project | [optional] +**region** | **string** | The region of the project | [optional] +**defaultDomain** | **string** | The default domain of the project | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectReference.md b/docs/Model/ProjectReference.md new file mode 100644 index 00000000..788245a3 --- /dev/null +++ b/docs/Model/ProjectReference.md @@ -0,0 +1,18 @@ +# # ProjectReference + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the project. | +**organizationId** | **string** | The ID of the organization. | +**subscriptionId** | **string** | The ID of the subscription. | +**region** | **string** | The machine name of the region where the project is located. | +**title** | **string** | The title of the project. | +**type** | [**\Upsun\Model\ProjectType**](ProjectType.md) | | +**plan** | **string** | The project plan. | +**status** | [**\Upsun\Model\ProjectStatus**](ProjectStatus.md) | | +**createdAt** | **\DateTime** | The date and time when the resource was created. | +**updatedAt** | **\DateTime** | The date and time when the resource was last updated. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectSettings.md b/docs/Model/ProjectSettings.md new file mode 100644 index 00000000..4efbd068 --- /dev/null +++ b/docs/Model/ProjectSettings.md @@ -0,0 +1,78 @@ +# # ProjectSettings + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**initialize** | **object** | | +**productName** | **string** | The name of the product. | +**productCode** | **string** | The lowercase ASCII code of the product. | +**uiUriTemplate** | **string** | The template of the project UI uri | +**variablesPrefix** | **string** | The prefix of the generated environment variables. | +**botEmail** | **string** | The email of the bot. | +**applicationConfigFile** | **string** | The name of the application-specific configuration file. | +**projectConfigDir** | **string** | The name of the project configuration directory. | +**useDrupalDefaults** | **bool** | Whether to use the default Drupal-centric configuration files when missing from the repository. | +**useLegacySubdomains** | **bool** | Whether to use legacy subdomain scheme, that replaces `.` by `---` in development subdomains. | +**developmentServiceSize** | **string** | The size of development services. | +**developmentApplicationSize** | **string** | The size of development applications. | +**enableCertificateProvisioning** | **bool** | Enable automatic certificate provisioning. | +**certificateStyle** | **string** | | +**certificateRenewalActivity** | **bool** | Create an activity for certificate renewal | +**developmentDomainTemplate** | **string** | The template of the development domain, can include {project} and {environment} placeholders. | +**enableStateApiDeployments** | **bool** | Enable the State API-driven deployments on regions that support them. | +**temporaryDiskSize** | **int** | Set the size of the temporary disk (/tmp, in MB). | +**localDiskSize** | **int** | Set the size of the instance disk (in MB). | +**cronMinimumInterval** | **int** | Minimum interval between cron runs (in minutes) | +**cronMaximumJitter** | **int** | Maximum jitter inserted in cron runs (in minutes) | +**cronProductionExpiryInterval** | **int** | The interval (in days) for which cron activity and logs are kept around | +**cronNonProductionExpiryInterval** | **int** | The interval (in days) for which cron activity and logs are kept around | +**concurrencyLimits** | **array** | The concurrency limits applied to different kind of activities | +**flexibleBuildCache** | **bool** | Enable the flexible build cache implementation | +**strictConfiguration** | **bool** | Strict configuration validation. | +**hasSleepyCrons** | **bool** | | +**cronsInGit** | **bool** | | +**customErrorTemplate** | **string** | Custom error template for the router. | +**appErrorPageTemplate** | **string** | Custom error template for the application. | +**environmentNameStrategy** | **string** | The strategy used to generate environment machine names | +**dataRetention** | [**array**](DataRetentionConfigurationValue.md) | Data retention configuration | +**enableCodesourceIntegrationPush** | **bool** | Enable pushing commits to codesource integration. | +**enforceMfa** | **bool** | Enforce multi-factor authentication. | +**systemd** | **bool** | Use systemd images. | +**routerGen2** | **bool** | Use the router v2 image. | +**buildResources** | [**\Upsun\Model\BuildResources1**](BuildResources1.md) | | +**outboundRestrictionsDefaultPolicy** | **string** | The default policy for firewall outbound restrictions | +**selfUpgrade** | **bool** | Whether self-upgrades are enabled | +**selfUpgradeLatestMajor** | **bool** | | +**additionalHosts** | **array** | A mapping of hostname to ip address to be added to the container's hosts file | +**maxAllowedRoutes** | **int** | Maximum number of routes allowed | +**maxAllowedRedirectsPaths** | **int** | Maximum number of redirect paths allowed | +**enableIncrementalBackups** | **bool** | Enable incremental backups on regions that support them. | +**sizingApiEnabled** | **bool** | Enable sizing api. | +**enableCacheGracePeriod** | **bool** | Enable cache grace period. | +**enableZeroDowntimeDeployments** | **bool** | Enable zero-downtime deployments for resource-only changes. | +**enableAdminAgent** | **bool** | | +**certifierUrl** | **string** | The certifier url | +**centralizedPermissions** | **bool** | Whether centralized permissions are enabled | +**glueServerMaxRequestSize** | **int** | Maximum size of request to glue-server (in MB) | +**persistentEndpointsSsh** | **bool** | Enable SSH access update with persistent endpoint | +**persistentEndpointsSslCertificates** | **bool** | Enable SSL certificate update with persistent endpoint | +**enableDiskHealthMonitoring** | **bool** | | +**enablePausedEnvironments** | **bool** | | +**enableUnifiedConfiguration** | **bool** | | +**enableRoutesTracing** | **bool** | Enable tracing support in routes | +**imageDeploymentValidation** | **bool** | Enable extended deployment validation by images | +**supportGenericImages** | **bool** | | +**enableGithubAppTokenExchange** | **bool** | Enable fetching the GitHub App token from SIA. | +**continuousProfiling** | [**\Upsun\Model\ContinuousProfilingConfiguration**](ContinuousProfilingConfiguration.md) | | +**disableAgentErrorReporter** | **bool** | | +**requiresDomainOwnership** | **bool** | Require ownership proof before domains are added to environments. | +**enableGuaranteedResources** | **bool** | Enable guaranteed resources feature | +**gitServer** | [**\Upsun\Model\GitServerConfiguration**](GitServerConfiguration.md) | | +**activityLogsMaxSize** | **int** | The maximum size of activity logs in bytes. This limit is applied on the pre-compressed log size. | +**allowManualDeployments** | **bool** | If deployments can be manual, i.e. explicitly triggered by user. | +**allowRollingDeployments** | **bool** | If the project can use rolling deployments. | +**allowBurst** | **bool** | | +**routerResources** | [**\Upsun\Model\RouterResources**](RouterResources.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectSettingsPatch.md b/docs/Model/ProjectSettingsPatch.md new file mode 100644 index 00000000..c791110d --- /dev/null +++ b/docs/Model/ProjectSettingsPatch.md @@ -0,0 +1,11 @@ +# # ProjectSettingsPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**initialize** | **object** | | [optional] +**dataRetention** | [**array**](DataRetentionConfigurationValue1.md) | Data retention configuration | [optional] +**buildResources** | [**\Upsun\Model\BuildResources2**](BuildResources2.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectStatus.md b/docs/Model/ProjectStatus.md new file mode 100644 index 00000000..77137610 --- /dev/null +++ b/docs/Model/ProjectStatus.md @@ -0,0 +1,8 @@ +# # ProjectStatus + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectType.md b/docs/Model/ProjectType.md new file mode 100644 index 00000000..38bdcd04 --- /dev/null +++ b/docs/Model/ProjectType.md @@ -0,0 +1,8 @@ +# # ProjectType + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectVariable.md b/docs/Model/ProjectVariable.md new file mode 100644 index 00000000..b9e3541e --- /dev/null +++ b/docs/Model/ProjectVariable.md @@ -0,0 +1,19 @@ +# # ProjectVariable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of ProjectVariable | +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**name** | **string** | Name of the variable | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**isJson** | **bool** | The variable is a JSON string | +**isSensitive** | **bool** | The variable is sensitive | +**visibleBuild** | **bool** | The variable is visible during build | +**visibleRuntime** | **bool** | The variable is visible at runtime | +**applicationScope** | **string[]** | Applications that have access to this variable | +**value** | **string** | Value of the variable | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectVariableCreateInput.md b/docs/Model/ProjectVariableCreateInput.md new file mode 100644 index 00000000..a1272e80 --- /dev/null +++ b/docs/Model/ProjectVariableCreateInput.md @@ -0,0 +1,16 @@ +# # ProjectVariableCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | Name of the variable | +**value** | **string** | Value of the variable | +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**isJson** | **bool** | The variable is a JSON string | [optional] +**isSensitive** | **bool** | The variable is sensitive | [optional] +**visibleBuild** | **bool** | The variable is visible during build | [optional] +**visibleRuntime** | **bool** | The variable is visible at runtime | [optional] +**applicationScope** | **string[]** | Applications that have access to this variable | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProjectVariablePatch.md b/docs/Model/ProjectVariablePatch.md new file mode 100644 index 00000000..7183bba0 --- /dev/null +++ b/docs/Model/ProjectVariablePatch.md @@ -0,0 +1,16 @@ +# # ProjectVariablePatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | Name of the variable | [optional] +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**value** | **string** | Value of the variable | [optional] +**isJson** | **bool** | The variable is a JSON string | [optional] +**isSensitive** | **bool** | The variable is sensitive | [optional] +**visibleBuild** | **bool** | The variable is visible during build | [optional] +**visibleRuntime** | **bool** | The variable is visible at runtime | [optional] +**applicationScope** | **string[]** | Applications that have access to this variable | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ProxyRoute.md b/docs/Model/ProxyRoute.md new file mode 100644 index 00000000..d8be4b25 --- /dev/null +++ b/docs/Model/ProxyRoute.md @@ -0,0 +1,20 @@ +# # ProxyRoute + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | Route type. | +**tls** | [**\Upsun\Model\TLSSettings**](TLSSettings.md) | | +**to** | **string** | | +**id** | **string** | The identifier of ProxyRoute | [optional] +**primary** | **bool** | This route is the primary route of the environment | [optional] +**productionUrl** | **string** | How this URL route would look on production environment | [optional] +**redirects** | [**\Upsun\Model\RedirectConfiguration**](RedirectConfiguration.md) | | [optional] +**cache** | [**\Upsun\Model\CacheConfiguration**](CacheConfiguration.md) | | [optional] +**ssi** | [**\Upsun\Model\SSIConfiguration**](SSIConfiguration.md) | | [optional] +**upstream** | **string** | The upstream to use for this route. | [optional] +**sticky** | [**\Upsun\Model\StickyConfiguration**](StickyConfiguration.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RedirectConfiguration.md b/docs/Model/RedirectConfiguration.md new file mode 100644 index 00000000..59f8d4d6 --- /dev/null +++ b/docs/Model/RedirectConfiguration.md @@ -0,0 +1,10 @@ +# # RedirectConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**expires** | **string** | The amount of time, in seconds, to cache the redirects. | +**paths** | [**array**](PathValue.md) | The paths to redirect | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RedirectRoute.md b/docs/Model/RedirectRoute.md new file mode 100644 index 00000000..df97dee5 --- /dev/null +++ b/docs/Model/RedirectRoute.md @@ -0,0 +1,20 @@ +# # RedirectRoute + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | Route type. | +**tls** | [**\Upsun\Model\TLSSettings**](TLSSettings.md) | | +**to** | **string** | | +**id** | **string** | The identifier of RedirectRoute | [optional] +**primary** | **bool** | This route is the primary route of the environment | [optional] +**productionUrl** | **string** | How this URL route would look on production environment | [optional] +**redirects** | [**\Upsun\Model\RedirectConfiguration**](RedirectConfiguration.md) | | [optional] +**cache** | [**\Upsun\Model\CacheConfiguration**](CacheConfiguration.md) | | [optional] +**ssi** | [**\Upsun\Model\SSIConfiguration**](SSIConfiguration.md) | | [optional] +**upstream** | **string** | The upstream to use for this route. | [optional] +**sticky** | [**\Upsun\Model\StickyConfiguration**](StickyConfiguration.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Ref.md b/docs/Model/Ref.md new file mode 100644 index 00000000..f488fed2 --- /dev/null +++ b/docs/Model/Ref.md @@ -0,0 +1,12 @@ +# # Ref + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Ref | +**ref** | **string** | The name of the reference | +**object** | [**\Upsun\Model\Object**](Object.md) | | +**sha** | **string** | The commit sha of the ref | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Region.md b/docs/Model/Region.md new file mode 100644 index 00000000..07049ff7 --- /dev/null +++ b/docs/Model/Region.md @@ -0,0 +1,20 @@ +# # Region + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the region. | [optional] +**label** | **string** | The human-readable name of the region. | [optional] +**zone** | **string** | Geographical zone of the region | [optional] +**selectionLabel** | **string** | The label to display when choosing between regions for new projects. | [optional] +**projectLabel** | **string** | The label to display on existing projects. | [optional] +**timezone** | **string** | Default timezone of the region | [optional] +**available** | **bool** | Indicator whether or not this region is selectable during the checkout. Not available regions will never show up during checkout. | [optional] +**private** | **bool** | Indicator whether or not this platform is for private use only. | [optional] +**endpoint** | **string** | Link to the region API endpoint. | [optional] +**provider** | [**\Upsun\Model\RegionProvider**](RegionProvider.md) | | [optional] +**datacenter** | [**\Upsun\Model\RegionDatacenter**](RegionDatacenter.md) | | [optional] +**environmentalImpact** | [**\Upsun\Model\RegionEnvironmentalImpact**](RegionEnvironmentalImpact.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RegionDatacenter.md b/docs/Model/RegionDatacenter.md new file mode 100644 index 00000000..3a1c84ac --- /dev/null +++ b/docs/Model/RegionDatacenter.md @@ -0,0 +1,11 @@ +# # RegionDatacenter + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | | [optional] +**label** | **string** | | [optional] +**location** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RegionEnvironmentalImpact.md b/docs/Model/RegionEnvironmentalImpact.md new file mode 100644 index 00000000..10570215 --- /dev/null +++ b/docs/Model/RegionEnvironmentalImpact.md @@ -0,0 +1,11 @@ +# # RegionEnvironmentalImpact + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**zone** | **string** | | [optional] +**carbonIntensity** | **string** | | [optional] +**green** | **bool** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RegionProvider.md b/docs/Model/RegionProvider.md new file mode 100644 index 00000000..62b77643 --- /dev/null +++ b/docs/Model/RegionProvider.md @@ -0,0 +1,10 @@ +# # RegionProvider + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | | [optional] +**logo** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RegionReference.md b/docs/Model/RegionReference.md new file mode 100644 index 00000000..170035fd --- /dev/null +++ b/docs/Model/RegionReference.md @@ -0,0 +1,24 @@ +# # RegionReference + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The machine name of the region where the project is located. | +**label** | **string** | The human-readable name of the region. | +**zone** | **string** | The geographical zone of the region. | +**selectionLabel** | **string** | The label to display when choosing between regions for new projects. | +**projectLabel** | **string** | The label to display on existing projects. | +**timezone** | **string** | Default timezone of the region. | +**available** | **bool** | Indicator whether or not this region is selectable during the checkout. Not available regions will never show up during checkout. | +**endpoint** | **string** | Link to the region API endpoint. | +**provider** | **object** | Information about the region provider. | +**datacenter** | **object** | Information about the region provider data center. | +**compliance** | **object** | Information about the region's compliance. | +**createdAt** | **\DateTime** | The date and time when the resource was created. | +**updatedAt** | **\DateTime** | The date and time when the resource was last updated. | +**private** | **bool** | Indicator whether or not this platform is for private use only. | [optional] +**code** | **string** | The code of the region | [optional] +**envimpact** | **object** | Information about the region provider's environmental impact. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ReplacementDomainStorage.md b/docs/Model/ReplacementDomainStorage.md new file mode 100644 index 00000000..03baa7e2 --- /dev/null +++ b/docs/Model/ReplacementDomainStorage.md @@ -0,0 +1,17 @@ +# # ReplacementDomainStorage + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | Domain type | +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | +**id** | **string** | The identifier of ReplacementDomainStorage | [optional] +**project** | **string** | | [optional] +**registeredName** | **string** | | [optional] +**replacementFor** | **string** | Prod domain which will be replaced by this domain. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ReplacementDomainStorageCreateInput.md b/docs/Model/ReplacementDomainStorageCreateInput.md new file mode 100644 index 00000000..c7f7b610 --- /dev/null +++ b/docs/Model/ReplacementDomainStorageCreateInput.md @@ -0,0 +1,11 @@ +# # ReplacementDomainStorageCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | | +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] +**replacementFor** | **string** | Prod domain which will be replaced by this domain. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ReplacementDomainStoragePatch.md b/docs/Model/ReplacementDomainStoragePatch.md new file mode 100644 index 00000000..f81f870c --- /dev/null +++ b/docs/Model/ReplacementDomainStoragePatch.md @@ -0,0 +1,9 @@ +# # ReplacementDomainStoragePatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RepositoryInformation.md b/docs/Model/RepositoryInformation.md new file mode 100644 index 00000000..687ada29 --- /dev/null +++ b/docs/Model/RepositoryInformation.md @@ -0,0 +1,10 @@ +# # RepositoryInformation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**url** | **string** | | +**clientSshKey** | **string** | SSH Key used to access external private repositories. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RequestBuffering.md b/docs/Model/RequestBuffering.md new file mode 100644 index 00000000..24a8c087 --- /dev/null +++ b/docs/Model/RequestBuffering.md @@ -0,0 +1,10 @@ +# # RequestBuffering + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Enable request buffering. | +**maxRequestSize** | **string** | The maximum size request that can be buffered. Supports K, M, and G suffixes. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ResetEmailAddressRequest.md b/docs/Model/ResetEmailAddressRequest.md new file mode 100644 index 00000000..8c26c410 --- /dev/null +++ b/docs/Model/ResetEmailAddressRequest.md @@ -0,0 +1,9 @@ +# # ResetEmailAddressRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**emailAddress** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ResourceConfig.md b/docs/Model/ResourceConfig.md new file mode 100644 index 00000000..e28f0775 --- /dev/null +++ b/docs/Model/ResourceConfig.md @@ -0,0 +1,9 @@ +# # ResourceConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**profileSize** | **string** | Profile size (e.g. \"0.5\", \"1\", \"2\") | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources.md b/docs/Model/Resources.md new file mode 100644 index 00000000..3f3c882f --- /dev/null +++ b/docs/Model/Resources.md @@ -0,0 +1,14 @@ +# # Resources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**baseMemory** | **int** | The base memory for the container | +**memoryRatio** | **int** | The amount of memory to allocate per units of CPU | +**profileSize** | **string** | Selected size from container profile | +**minimum** | [**\Upsun\Model\MinimumResources**](MinimumResources.md) | | +**default** | [**\Upsun\Model\DefaultResources**](DefaultResources.md) | | +**disk** | [**\Upsun\Model\DiskResources**](DiskResources.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources1.md b/docs/Model/Resources1.md new file mode 100644 index 00000000..bef69569 --- /dev/null +++ b/docs/Model/Resources1.md @@ -0,0 +1,9 @@ +# # Resources1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**profileSize** | **string** | Profile size of the service. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources2.md b/docs/Model/Resources2.md new file mode 100644 index 00000000..8b5aec00 --- /dev/null +++ b/docs/Model/Resources2.md @@ -0,0 +1,9 @@ +# # Resources2 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**init** | **string** | The resources used when activating an environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources3.md b/docs/Model/Resources3.md new file mode 100644 index 00000000..ea913b8c --- /dev/null +++ b/docs/Model/Resources3.md @@ -0,0 +1,9 @@ +# # Resources3 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**init** | **string** | The resources used when initializing services of the new environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources4.md b/docs/Model/Resources4.md new file mode 100644 index 00000000..4a97baee --- /dev/null +++ b/docs/Model/Resources4.md @@ -0,0 +1,9 @@ +# # Resources4 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**init** | **string** | The resources used when initializing the environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources5.md b/docs/Model/Resources5.md new file mode 100644 index 00000000..f91fa6a2 --- /dev/null +++ b/docs/Model/Resources5.md @@ -0,0 +1,9 @@ +# # Resources5 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**init** | **string** | The resources used when merging an environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Resources6.md b/docs/Model/Resources6.md new file mode 100644 index 00000000..65b832b4 --- /dev/null +++ b/docs/Model/Resources6.md @@ -0,0 +1,9 @@ +# # Resources6 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**init** | **string** | The resources used when initializing services of the environment | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ResourcesLimits.md b/docs/Model/ResourcesLimits.md new file mode 100644 index 00000000..26a3764c --- /dev/null +++ b/docs/Model/ResourcesLimits.md @@ -0,0 +1,11 @@ +# # ResourcesLimits + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**containerProfiles** | **bool** | Enable support for customizable container profiles. | +**production** | [**\Upsun\Model\ProductionResources**](ProductionResources.md) | | +**development** | [**\Upsun\Model\DevelopmentResources**](DevelopmentResources.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ResourcesOverridesValue.md b/docs/Model/ResourcesOverridesValue.md new file mode 100644 index 00000000..d676647f --- /dev/null +++ b/docs/Model/ResourcesOverridesValue.md @@ -0,0 +1,13 @@ +# # ResourcesOverridesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**services** | [**array**](PreServiceResourcesOverridesValue.md) | Per-service resources overrides. | +**startsAt** | **\DateTime** | Date when the override will apply. When null, don't do an auto redeployment but still be effective to redeploys initiated otherwise. | +**endsAt** | **\DateTime** | Date when the override will be reverted. When null, the overrides will never go out of effect. | +**redeployedStart** | **bool** | Whether the starting redeploy activity has been fired for this override. | +**redeployedEnd** | **bool** | Whether the ending redeploy activity has been fired for this override. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Route.md b/docs/Model/Route.md new file mode 100644 index 00000000..9da59051 --- /dev/null +++ b/docs/Model/Route.md @@ -0,0 +1,20 @@ +# # Route + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | Route type. | +**tls** | [**\Upsun\Model\TLSSettings**](TLSSettings.md) | | +**to** | **string** | | +**id** | **string** | The identifier of UpstreamRoute | [optional] +**primary** | **bool** | This route is the primary route of the environment | [optional] +**productionUrl** | **string** | How this URL route would look on production environment | [optional] +**redirects** | [**\Upsun\Model\RedirectConfiguration**](RedirectConfiguration.md) | | [optional] +**cache** | [**\Upsun\Model\CacheConfiguration**](CacheConfiguration.md) | | [optional] +**ssi** | [**\Upsun\Model\SSIConfiguration**](SSIConfiguration.md) | | [optional] +**upstream** | **string** | The upstream to use for this route. | [optional] +**sticky** | [**\Upsun\Model\StickyConfiguration**](StickyConfiguration.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RouterResources.md b/docs/Model/RouterResources.md new file mode 100644 index 00000000..70cfa127 --- /dev/null +++ b/docs/Model/RouterResources.md @@ -0,0 +1,12 @@ +# # RouterResources + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**baselineCpu** | **float** | Router baseline CPU for flex plan | +**baselineMemory** | **int** | Router baseline memory (MB) for flex plan | +**maxCpu** | **float** | Router max CPU for flex plan | +**maxMemory** | **int** | Router max memory (MB) for flex plan | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RoutesValue.md b/docs/Model/RoutesValue.md new file mode 100644 index 00000000..3e34e467 --- /dev/null +++ b/docs/Model/RoutesValue.md @@ -0,0 +1,20 @@ +# # RoutesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | Route type. | +**tls** | [**\Upsun\Model\TLSSettings**](TLSSettings.md) | | +**to** | **string** | | +**id** | **string** | The identifier of UpstreamRoute | [optional] +**primary** | **bool** | This route is the primary route of the environment | [optional] +**productionUrl** | **string** | How this URL route would look on production environment | [optional] +**redirects** | [**\Upsun\Model\RedirectConfiguration**](RedirectConfiguration.md) | | [optional] +**cache** | [**\Upsun\Model\CacheConfiguration**](CacheConfiguration.md) | | [optional] +**ssi** | [**\Upsun\Model\SSIConfiguration**](SSIConfiguration.md) | | [optional] +**upstream** | **string** | The upstream to use for this route. | [optional] +**sticky** | [**\Upsun\Model\StickyConfiguration**](StickyConfiguration.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Routing.md b/docs/Model/Routing.md new file mode 100644 index 00000000..cff4d7dc --- /dev/null +++ b/docs/Model/Routing.md @@ -0,0 +1,9 @@ +# # Routing + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**percentage** | **int** | The percentage of traffic routed to this version | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Routing1.md b/docs/Model/Routing1.md new file mode 100644 index 00000000..14772de0 --- /dev/null +++ b/docs/Model/Routing1.md @@ -0,0 +1,9 @@ +# # Routing1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**percentage** | **int** | The percentage of traffic routed to this version | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/RuntimeOperations.md b/docs/Model/RuntimeOperations.md new file mode 100644 index 00000000..72e72afa --- /dev/null +++ b/docs/Model/RuntimeOperations.md @@ -0,0 +1,9 @@ +# # RuntimeOperations + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, runtime operations can be triggered. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SSIConfiguration.md b/docs/Model/SSIConfiguration.md new file mode 100644 index 00000000..6b24a63a --- /dev/null +++ b/docs/Model/SSIConfiguration.md @@ -0,0 +1,9 @@ +# # SSIConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether SSI include is enabled. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ScheduleInner.md b/docs/Model/ScheduleInner.md new file mode 100644 index 00000000..179540cd --- /dev/null +++ b/docs/Model/ScheduleInner.md @@ -0,0 +1,10 @@ +# # ScheduleInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**interval** | **string** | The policy interval specification. | +**count** | **int** | The number of backups to keep under this interval. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Script.md b/docs/Model/Script.md new file mode 100644 index 00000000..6d21034b --- /dev/null +++ b/docs/Model/Script.md @@ -0,0 +1,10 @@ +# # Script + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ScriptIntegration.md b/docs/Model/ScriptIntegration.md new file mode 100644 index 00000000..3e9b84ca --- /dev/null +++ b/docs/Model/ScriptIntegration.md @@ -0,0 +1,18 @@ +# # ScriptIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**events** | **string[]** | Events to execute the hook on | +**environments** | **string[]** | The environments to execute the hook on | +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | +**states** | **string[]** | Events to execute the hook on | +**result** | **string** | Result to execute the hook on | +**script** | **string** | The script to run | +**id** | **string** | The identifier of ScriptIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ScriptIntegrationCreateInput.md b/docs/Model/ScriptIntegrationCreateInput.md new file mode 100644 index 00000000..2a46314c --- /dev/null +++ b/docs/Model/ScriptIntegrationCreateInput.md @@ -0,0 +1,15 @@ +# # ScriptIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**script** | **string** | The script to run | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ScriptIntegrationPatch.md b/docs/Model/ScriptIntegrationPatch.md new file mode 100644 index 00000000..20248137 --- /dev/null +++ b/docs/Model/ScriptIntegrationPatch.md @@ -0,0 +1,15 @@ +# # ScriptIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**script** | **string** | The script to run | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SendOrgMfaReminders200ResponseValue.md b/docs/Model/SendOrgMfaReminders200ResponseValue.md new file mode 100644 index 00000000..49da8f6a --- /dev/null +++ b/docs/Model/SendOrgMfaReminders200ResponseValue.md @@ -0,0 +1,10 @@ +# # SendOrgMfaReminders200ResponseValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**code** | **int** | An HTTP-like status code referring to the result of the operation for the specific user. | [optional] +**message** | **string** | A human-readable message describing the result of the operation for the specific user | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SendOrgMfaRemindersRequest.md b/docs/Model/SendOrgMfaRemindersRequest.md new file mode 100644 index 00000000..b605c523 --- /dev/null +++ b/docs/Model/SendOrgMfaRemindersRequest.md @@ -0,0 +1,9 @@ +# # SendOrgMfaRemindersRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userIds** | **string[]** | The organization members. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ServiceRelationshipsValue.md b/docs/Model/ServiceRelationshipsValue.md new file mode 100644 index 00000000..21ba74f5 --- /dev/null +++ b/docs/Model/ServiceRelationshipsValue.md @@ -0,0 +1,10 @@ +# # ServiceRelationshipsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**service** | **string** | The name of the service. | +**endpoint** | **string** | The name of the endpoint on the service. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ServicesValue.md b/docs/Model/ServicesValue.md new file mode 100644 index 00000000..d7247339 --- /dev/null +++ b/docs/Model/ServicesValue.md @@ -0,0 +1,19 @@ +# # ServicesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | The service type. | +**size** | **string** | The service size. | +**disk** | **int** | | +**access** | **object** | The configuration of the service. | +**configuration** | **object** | The configuration of the service. | +**relationships** | **array** | The relationships of the service to other services. | +**firewall** | [**\Upsun\Model\Firewall**](Firewall.md) | | +**resources** | [**\Upsun\Model\Resources**](Resources.md) | | +**containerProfile** | **string** | Selected container profile for the service | +**endpoints** | **object** | | +**instanceCount** | **int** | Instance replication count of this service | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/ServicesValue1.md b/docs/Model/ServicesValue1.md new file mode 100644 index 00000000..04a60821 --- /dev/null +++ b/docs/Model/ServicesValue1.md @@ -0,0 +1,11 @@ +# # ServicesValue1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\Resources1**](Resources1.md) | | +**instanceCount** | **int** | Instance replication count of this application | +**disk** | **int** | The size of the disk. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Sizing.md b/docs/Model/Sizing.md new file mode 100644 index 00000000..1cc49bce --- /dev/null +++ b/docs/Model/Sizing.md @@ -0,0 +1,11 @@ +# # Sizing + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**services** | [**array**](ServicesValue1.md) | | +**webapps** | [**array**](ServicesValue1.md) | | +**workers** | [**array**](ServicesValue1.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SlackIntegration.md b/docs/Model/SlackIntegration.md new file mode 100644 index 00000000..2658705b --- /dev/null +++ b/docs/Model/SlackIntegration.md @@ -0,0 +1,13 @@ +# # SlackIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**channel** | **string** | The Slack channel to post messages to | +**id** | **string** | The identifier of SlackIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SlackIntegrationCreateInput.md b/docs/Model/SlackIntegrationCreateInput.md new file mode 100644 index 00000000..a2e78be0 --- /dev/null +++ b/docs/Model/SlackIntegrationCreateInput.md @@ -0,0 +1,11 @@ +# # SlackIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The Slack token to use | +**channel** | **string** | The Slack channel to post messages to | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SlackIntegrationPatch.md b/docs/Model/SlackIntegrationPatch.md new file mode 100644 index 00000000..7e156551 --- /dev/null +++ b/docs/Model/SlackIntegrationPatch.md @@ -0,0 +1,11 @@ +# # SlackIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**token** | **string** | The Slack token to use | +**channel** | **string** | The Slack channel to post messages to | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SourceCodeConfiguration.md b/docs/Model/SourceCodeConfiguration.md new file mode 100644 index 00000000..e364077d --- /dev/null +++ b/docs/Model/SourceCodeConfiguration.md @@ -0,0 +1,10 @@ +# # SourceCodeConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**root** | **string** | The root of the application relative to the repository root. | +**operations** | [**array**](SourceOperationsValue.md) | Operations that can be applied to the source code. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SourceOperations.md b/docs/Model/SourceOperations.md new file mode 100644 index 00000000..4b861125 --- /dev/null +++ b/docs/Model/SourceOperations.md @@ -0,0 +1,9 @@ +# # SourceOperations + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | If true, source operations can be triggered. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SourceOperationsValue.md b/docs/Model/SourceOperationsValue.md new file mode 100644 index 00000000..65d116c9 --- /dev/null +++ b/docs/Model/SourceOperationsValue.md @@ -0,0 +1,9 @@ +# # SourceOperationsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**command** | **string** | The command to use to update this application. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SpecificOverridesValue.md b/docs/Model/SpecificOverridesValue.md new file mode 100644 index 00000000..d10d6ce5 --- /dev/null +++ b/docs/Model/SpecificOverridesValue.md @@ -0,0 +1,13 @@ +# # SpecificOverridesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**expires** | **string** | Amount of time to cache static assets. | [optional] +**passthru** | **string** | Whether to forward disallowed and missing resources from this location to the application. On PHP, set to the PHP front controller script, as a URL fragment. Otherwise set to `true`/`false`. | [optional] +**scripts** | **bool** | Whether to execute scripts in this location (for script based runtimes). | [optional] +**allow** | **bool** | Whether to allow access to this location by default. | [optional] +**headers** | **array** | A set of header fields set to the HTTP response. Replaces headers set on the location block. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Splunk.md b/docs/Model/Splunk.md new file mode 100644 index 00000000..70f09456 --- /dev/null +++ b/docs/Model/Splunk.md @@ -0,0 +1,10 @@ +# # Splunk + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SplunkIntegration.md b/docs/Model/SplunkIntegration.md new file mode 100644 index 00000000..8c12492f --- /dev/null +++ b/docs/Model/SplunkIntegration.md @@ -0,0 +1,18 @@ +# # SplunkIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**url** | **string** | The Splunk HTTP Event Connector REST API endpoint | +**index** | **string** | The Splunk Index | +**sourcetype** | **string** | The event 'sourcetype' | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**id** | **string** | The identifier of SplunkIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SplunkIntegrationCreateInput.md b/docs/Model/SplunkIntegrationCreateInput.md new file mode 100644 index 00000000..265de232 --- /dev/null +++ b/docs/Model/SplunkIntegrationCreateInput.md @@ -0,0 +1,16 @@ +# # SplunkIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The Splunk HTTP Event Connector REST API endpoint | +**index** | **string** | The Splunk Index | +**token** | **string** | The Splunk Authorization Token | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**sourcetype** | **string** | The event 'sourcetype' | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SplunkIntegrationPatch.md b/docs/Model/SplunkIntegrationPatch.md new file mode 100644 index 00000000..161d208c --- /dev/null +++ b/docs/Model/SplunkIntegrationPatch.md @@ -0,0 +1,16 @@ +# # SplunkIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The Splunk HTTP Event Connector REST API endpoint | +**index** | **string** | The Splunk Index | +**token** | **string** | The Splunk Authorization Token | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**sourcetype** | **string** | The event 'sourcetype' | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SshKey.md b/docs/Model/SshKey.md new file mode 100644 index 00000000..623cd225 --- /dev/null +++ b/docs/Model/SshKey.md @@ -0,0 +1,14 @@ +# # SshKey + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**keyId** | **int** | The ID of the public key. | [optional] +**uid** | **int** | The internal user ID. | [optional] +**fingerprint** | **string** | The fingerprint of the public key. | [optional] +**title** | **string** | The title of the public key. | [optional] +**value** | **string** | The actual value of the public key. | [optional] +**changed** | **string** | The time of the last key modification (ISO 8601) | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Status.md b/docs/Model/Status.md new file mode 100644 index 00000000..5c425eb7 --- /dev/null +++ b/docs/Model/Status.md @@ -0,0 +1,10 @@ +# # Status + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**code** | **string** | | +**message** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/StickyConfiguration.md b/docs/Model/StickyConfiguration.md new file mode 100644 index 00000000..cf0be318 --- /dev/null +++ b/docs/Model/StickyConfiguration.md @@ -0,0 +1,9 @@ +# # StickyConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether sticky routing is enabled. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/StrictTransportSecurityOptions.md b/docs/Model/StrictTransportSecurityOptions.md new file mode 100644 index 00000000..c4678561 --- /dev/null +++ b/docs/Model/StrictTransportSecurityOptions.md @@ -0,0 +1,11 @@ +# # StrictTransportSecurityOptions + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | Whether strict transport security is enabled or not. | +**includeSubdomains** | **bool** | Whether the strict transport security policy should include all subdomains. | +**preload** | **bool** | Whether the strict transport security policy should be preloaded in browsers. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/StringFilter.md b/docs/Model/StringFilter.md new file mode 100644 index 00000000..b8a58012 --- /dev/null +++ b/docs/Model/StringFilter.md @@ -0,0 +1,16 @@ +# # StringFilter + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**eq** | **string** | Equal | [optional] +**ne** | **string** | Not equal | [optional] +**in** | **string** | In (comma-separated list) | [optional] +**nin** | **string** | Not in (comma-separated list) | [optional] +**between** | **string** | Between (comma-separated list) | [optional] +**contains** | **string** | Contains | [optional] +**starts** | **string** | Starts with | [optional] +**ends** | **string** | Ends with | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Subscription.md b/docs/Model/Subscription.md new file mode 100644 index 00000000..6204c487 --- /dev/null +++ b/docs/Model/Subscription.md @@ -0,0 +1,32 @@ +# # Subscription + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The internal ID of the subscription. | [optional] +**status** | **string** | The status of the subscription. | [optional] +**createdAt** | **\DateTime** | The date and time when the subscription was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the subscription was last updated. | [optional] +**owner** | **string** | The UUID of the owner. | [optional] +**ownerInfo** | [**\Upsun\Model\OwnerInfo**](OwnerInfo.md) | | [optional] +**vendor** | **string** | The machine name of the vendor the subscription belongs to. | [optional] +**plan** | **string** | The plan type of the subscription. | [optional] +**environments** | **int** | The number of environments which can be provisioned on the project. | [optional] +**storage** | **int** | The total storage available to each environment, in MiB. Only multiples of 1024 are accepted as legal values. | [optional] +**userLicenses** | **int** | The number of chargeable users who currently have access to the project. Manage this value by adding and removing users through the Platform project API. Staff and billing/administrative contacts can be added to a project for no charge. Contact support for questions about user licenses. | [optional] +**projectId** | **string** | The unique ID string of the project. | [optional] +**projectEndpoint** | **string** | The project API endpoint for the project. | [optional] +**projectTitle** | **string** | The name given to the project. Appears as the title in the UI. | [optional] +**projectRegion** | **string** | The machine name of the region where the project is located. Cannot be changed after project creation. | [optional] +**projectRegionLabel** | **string** | The human-readable name of the region where the project is located. | [optional] +**projectUi** | **string** | The URL for the project's user interface. | [optional] +**projectOptions** | [**\Upsun\Model\ProjectOptions**](ProjectOptions.md) | | [optional] +**agencySite** | **bool** | True if the project is an agency site. | [optional] +**invoiced** | **bool** | Whether the subscription is invoiced. | [optional] +**hipaa** | **bool** | Whether the project is marked as HIPAA. | [optional] +**isTrialPlan** | **bool** | Whether the project is currently on a trial plan. | [optional] +**services** | **object[]** | Details of the attached services. | [optional] +**green** | **bool** | Whether the subscription is considered green (on a green region, belonging to a green vendor) for billing purposes. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Subscription1.md b/docs/Model/Subscription1.md new file mode 100644 index 00000000..9b0abd3a --- /dev/null +++ b/docs/Model/Subscription1.md @@ -0,0 +1,20 @@ +# # Subscription1 + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**licenseUri** | **string** | URI of the subscription | +**storage** | **int** | Size of storage (in MB) | +**includedUsers** | **int** | Number of users | +**subscriptionManagementUri** | **string** | URI for managing the subscription | +**restricted** | **bool** | True if subscription attributes, like number of users, are frozen | +**suspended** | **bool** | Whether or not the subscription is suspended | +**userLicenses** | **int** | Current number of users | +**plan** | **string** | | [optional] +**environments** | **int** | Number of environments | [optional] +**resources** | [**\Upsun\Model\ResourcesLimits**](ResourcesLimits.md) | | [optional] +**resourceValidationUrl** | **string** | URL for resources validation | [optional] +**imageTypes** | [**\Upsun\Model\ImageTypeRestrictions**](ImageTypeRestrictions.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionAddonsObject.md b/docs/Model/SubscriptionAddonsObject.md new file mode 100644 index 00000000..775c1c07 --- /dev/null +++ b/docs/Model/SubscriptionAddonsObject.md @@ -0,0 +1,11 @@ +# # SubscriptionAddonsObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | [**\Upsun\Model\SubscriptionAddonsObjectAvailable**](SubscriptionAddonsObjectAvailable.md) | | [optional] +**current** | [**\Upsun\Model\SubscriptionAddonsObjectCurrent**](SubscriptionAddonsObjectCurrent.md) | | [optional] +**upgradesAvailable** | [**\Upsun\Model\SubscriptionAddonsObjectUpgradesAvailable**](SubscriptionAddonsObjectUpgradesAvailable.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionAddonsObjectAvailable.md b/docs/Model/SubscriptionAddonsObjectAvailable.md new file mode 100644 index 00000000..0a5d99c3 --- /dev/null +++ b/docs/Model/SubscriptionAddonsObjectAvailable.md @@ -0,0 +1,10 @@ +# # SubscriptionAddonsObjectAvailable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**continuousProfiling** | **array** | Information about the continuous profiling options available. | [optional] +**projectSupportLevel** | **array** | Information about the project uptime options available. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionAddonsObjectCurrent.md b/docs/Model/SubscriptionAddonsObjectCurrent.md new file mode 100644 index 00000000..cf7a115b --- /dev/null +++ b/docs/Model/SubscriptionAddonsObjectCurrent.md @@ -0,0 +1,10 @@ +# # SubscriptionAddonsObjectCurrent + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**continuousProfiling** | **array** | The current continuous profiling level of the license. | [optional] +**projectSupportLevel** | **array** | The current project uptime level of the license. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionAddonsObjectUpgradesAvailable.md b/docs/Model/SubscriptionAddonsObjectUpgradesAvailable.md new file mode 100644 index 00000000..a7d82a98 --- /dev/null +++ b/docs/Model/SubscriptionAddonsObjectUpgradesAvailable.md @@ -0,0 +1,10 @@ +# # SubscriptionAddonsObjectUpgradesAvailable + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**continuousProfiling** | **string[]** | Available upgrade options for continuous profiling. | [optional] +**projectSupportLevel** | **string[]** | Available upgrade options for project uptime. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionCurrentUsageObject.md b/docs/Model/SubscriptionCurrentUsageObject.md new file mode 100644 index 00000000..a93104b0 --- /dev/null +++ b/docs/Model/SubscriptionCurrentUsageObject.md @@ -0,0 +1,21 @@ +# # SubscriptionCurrentUsageObject + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**cpuApp** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**storageAppServices** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**memoryApp** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**cpuServices** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**memoryServices** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**backupStorage** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**buildCpu** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**buildMemory** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**egressBandwidth** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**ingressRequests** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**logsFwdContentSize** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**fastlyBandwidth** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] +**fastlyRequests** | [**\Upsun\Model\UsageGroupCurrentUsageProperties**](UsageGroupCurrentUsageProperties.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SubscriptionInformation.md b/docs/Model/SubscriptionInformation.md new file mode 100644 index 00000000..f172faa5 --- /dev/null +++ b/docs/Model/SubscriptionInformation.md @@ -0,0 +1,20 @@ +# # SubscriptionInformation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**licenseUri** | **string** | URI of the subscription | +**storage** | **int** | Size of storage (in MB) | +**includedUsers** | **int** | Number of users | +**subscriptionManagementUri** | **string** | URI for managing the subscription | +**restricted** | **bool** | True if subscription attributes, like number of users, are frozen | +**suspended** | **bool** | Whether or not the subscription is suspended | +**userLicenses** | **int** | Current number of users | +**plan** | **string** | | [optional] +**environments** | **int** | Number of environments | [optional] +**resources** | [**\Upsun\Model\ResourcesLimits**](ResourcesLimits.md) | | [optional] +**resourceValidationUrl** | **string** | URL for resources validation | [optional] +**imageTypes** | [**\Upsun\Model\ImageTypeRestrictions**](ImageTypeRestrictions.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SumoLogic.md b/docs/Model/SumoLogic.md new file mode 100644 index 00000000..b7f8c901 --- /dev/null +++ b/docs/Model/SumoLogic.md @@ -0,0 +1,10 @@ +# # SumoLogic + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SumologicIntegration.md b/docs/Model/SumologicIntegration.md new file mode 100644 index 00000000..9abe319e --- /dev/null +++ b/docs/Model/SumologicIntegration.md @@ -0,0 +1,17 @@ +# # SumologicIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**url** | **string** | | +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**id** | **string** | The identifier of SumologicIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SumologicIntegrationCreateInput.md b/docs/Model/SumologicIntegrationCreateInput.md new file mode 100644 index 00000000..744f9875 --- /dev/null +++ b/docs/Model/SumologicIntegrationCreateInput.md @@ -0,0 +1,14 @@ +# # SumologicIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SumologicIntegrationPatch.md b/docs/Model/SumologicIntegrationPatch.md new file mode 100644 index 00000000..9742ea4e --- /dev/null +++ b/docs/Model/SumologicIntegrationPatch.md @@ -0,0 +1,14 @@ +# # SumologicIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**category** | **string** | The Category used to easy filtering (sent as X-Sumo-Category header) | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Syslog.md b/docs/Model/Syslog.md new file mode 100644 index 00000000..73103db3 --- /dev/null +++ b/docs/Model/Syslog.md @@ -0,0 +1,10 @@ +# # Syslog + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SyslogIntegration.md b/docs/Model/SyslogIntegration.md new file mode 100644 index 00000000..f9566a4e --- /dev/null +++ b/docs/Model/SyslogIntegration.md @@ -0,0 +1,20 @@ +# # SyslogIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | +**host** | **string** | Syslog relay/collector host | +**port** | **int** | Syslog relay/collector port | +**protocol** | **string** | Transport protocol | +**facility** | **int** | Syslog facility | +**messageFormat** | **string** | Syslog message format | +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | +**id** | **string** | The identifier of SyslogIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SyslogIntegrationCreateInput.md b/docs/Model/SyslogIntegrationCreateInput.md new file mode 100644 index 00000000..031cc84a --- /dev/null +++ b/docs/Model/SyslogIntegrationCreateInput.md @@ -0,0 +1,19 @@ +# # SyslogIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**host** | **string** | Syslog relay/collector host | [optional] +**port** | **int** | Syslog relay/collector port | [optional] +**protocol** | **string** | Transport protocol | [optional] +**facility** | **int** | Syslog facility | [optional] +**messageFormat** | **string** | Syslog message format | [optional] +**authToken** | **string** | | [optional] +**authMode** | **string** | | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SyslogIntegrationPatch.md b/docs/Model/SyslogIntegrationPatch.md new file mode 100644 index 00000000..58133ab7 --- /dev/null +++ b/docs/Model/SyslogIntegrationPatch.md @@ -0,0 +1,19 @@ +# # SyslogIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**extra** | **array** | Arbitrary key/value pairs to include with forwarded logs | [optional] +**host** | **string** | Syslog relay/collector host | [optional] +**port** | **int** | Syslog relay/collector port | [optional] +**protocol** | **string** | Transport protocol | [optional] +**facility** | **int** | Syslog facility | [optional] +**messageFormat** | **string** | Syslog message format | [optional] +**authToken** | **string** | | [optional] +**authMode** | **string** | | [optional] +**tlsVerify** | **bool** | Enable/Disable HTTPS certificate verification | [optional] +**excludedServices** | **string[]** | Comma separated list of service and application names to exclude from logging | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/SystemInformation.md b/docs/Model/SystemInformation.md new file mode 100644 index 00000000..ddee8b30 --- /dev/null +++ b/docs/Model/SystemInformation.md @@ -0,0 +1,11 @@ +# # SystemInformation + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**version** | **string** | The version of this project server | +**image** | **string** | The image version of the project server | +**startedAt** | **\DateTime** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TLSSettings.md b/docs/Model/TLSSettings.md new file mode 100644 index 00000000..e3ed4e32 --- /dev/null +++ b/docs/Model/TLSSettings.md @@ -0,0 +1,12 @@ +# # TLSSettings + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**strictTransportSecurity** | [**\Upsun\Model\StrictTransportSecurityOptions**](StrictTransportSecurityOptions.md) | | +**minVersion** | **string** | The minimum TLS version to support. | +**clientAuthentication** | **string** | The type of client authentication to request. | +**clientCertificateAuthorities** | **string[]** | Certificate authorities to validate the client certificate against. If not specified, a default set of trusted CAs will be used. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Team.md b/docs/Model/Team.md new file mode 100644 index 00000000..5b584268 --- /dev/null +++ b/docs/Model/Team.md @@ -0,0 +1,15 @@ +# # Team + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the team. | [optional] +**organizationId** | **string** | The ID of the parent organization. | [optional] +**label** | **string** | The human-readable label of the team. | [optional] +**projectPermissions** | **string[]** | Project permissions that are granted to the team. | [optional] +**counts** | [**\Upsun\Model\TeamCounts**](TeamCounts.md) | | [optional] +**createdAt** | **\DateTime** | The date and time when the team was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the team was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamCounts.md b/docs/Model/TeamCounts.md new file mode 100644 index 00000000..fff67c42 --- /dev/null +++ b/docs/Model/TeamCounts.md @@ -0,0 +1,10 @@ +# # TeamCounts + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**memberCount** | **int** | Total count of members of the team. | [optional] +**projectCount** | **int** | Total count of projects that the team has access to. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamMember.md b/docs/Model/TeamMember.md new file mode 100644 index 00000000..dd5ea017 --- /dev/null +++ b/docs/Model/TeamMember.md @@ -0,0 +1,12 @@ +# # TeamMember + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**teamId** | **string** | The ID of the team. | [optional] +**userId** | **string** | The ID of the user. | [optional] +**createdAt** | **\DateTime** | The date and time when the team member was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the team member was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamProjectAccess.md b/docs/Model/TeamProjectAccess.md new file mode 100644 index 00000000..c1ada4bb --- /dev/null +++ b/docs/Model/TeamProjectAccess.md @@ -0,0 +1,15 @@ +# # TeamProjectAccess + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**teamId** | **string** | The ID of the team. | [optional] +**organizationId** | **string** | The ID of the organization. | [optional] +**projectId** | **string** | The ID of the project. | [optional] +**projectTitle** | **string** | The title of the project. | [optional] +**grantedAt** | **\DateTime** | The date and time when the access was granted. | [optional] +**updatedAt** | **\DateTime** | The date and time when the access was last updated. | [optional] +**links** | [**\Upsun\Model\TeamProjectAccessLinks**](TeamProjectAccessLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamProjectAccessLinks.md b/docs/Model/TeamProjectAccessLinks.md new file mode 100644 index 00000000..280e99ff --- /dev/null +++ b/docs/Model/TeamProjectAccessLinks.md @@ -0,0 +1,11 @@ +# # TeamProjectAccessLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\TeamProjectAccessLinksSelf**](TeamProjectAccessLinksSelf.md) | | [optional] +**update** | [**\Upsun\Model\TeamProjectAccessLinksUpdate**](TeamProjectAccessLinksUpdate.md) | | [optional] +**delete** | [**\Upsun\Model\TeamProjectAccessLinksDelete**](TeamProjectAccessLinksDelete.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamProjectAccessLinksDelete.md b/docs/Model/TeamProjectAccessLinksDelete.md new file mode 100644 index 00000000..1085e1c4 --- /dev/null +++ b/docs/Model/TeamProjectAccessLinksDelete.md @@ -0,0 +1,10 @@ +# # TeamProjectAccessLinksDelete + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamProjectAccessLinksSelf.md b/docs/Model/TeamProjectAccessLinksSelf.md new file mode 100644 index 00000000..14999839 --- /dev/null +++ b/docs/Model/TeamProjectAccessLinksSelf.md @@ -0,0 +1,9 @@ +# # TeamProjectAccessLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamProjectAccessLinksUpdate.md b/docs/Model/TeamProjectAccessLinksUpdate.md new file mode 100644 index 00000000..eb11134f --- /dev/null +++ b/docs/Model/TeamProjectAccessLinksUpdate.md @@ -0,0 +1,10 @@ +# # TeamProjectAccessLinksUpdate + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] +**method** | **string** | The HTTP method to use. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TeamReference.md b/docs/Model/TeamReference.md new file mode 100644 index 00000000..0d47b2cf --- /dev/null +++ b/docs/Model/TeamReference.md @@ -0,0 +1,15 @@ +# # TeamReference + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the team. | [optional] +**organizationId** | **string** | The ID of the parent organization. | [optional] +**label** | **string** | The human-readable label of the team. | [optional] +**projectPermissions** | **string[]** | Project permissions that are granted to the team. | [optional] +**counts** | [**\Upsun\Model\TeamCounts**](TeamCounts.md) | | [optional] +**createdAt** | **\DateTime** | The date and time when the team was created. | [optional] +**updatedAt** | **\DateTime** | The date and time when the team was last updated. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Ticket.md b/docs/Model/Ticket.md new file mode 100644 index 00000000..3bc7e92a --- /dev/null +++ b/docs/Model/Ticket.md @@ -0,0 +1,43 @@ +# # Ticket + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ticketId** | **int** | The ID of the ticket. | [optional] +**created** | **\DateTime** | The time when the support ticket was created. | [optional] +**updated** | **\DateTime** | The time when the support ticket was updated. | [optional] +**type** | **string** | A type of the ticket. | [optional] +**subject** | **string** | A title of the ticket. | [optional] +**description** | **string** | The description body of the support ticket. | [optional] +**priority** | **string** | A priority of the ticket. | [optional] +**followupTid** | **string** | Followup ticket ID. The unique ID of the ticket which this ticket is a follow-up to. | [optional] +**status** | **string** | The status of the support ticket. | [optional] +**recipient** | **string** | Email address of the ticket recipient, defaults to support@upsun.com. | [optional] +**requesterId** | **string** | UUID of the ticket requester. | [optional] +**submitterId** | **string** | UUID of the ticket submitter. | [optional] +**assigneeId** | **string** | UUID of the ticket assignee. | [optional] +**organizationId** | **string** | A reference id that is usable to find the commerce license. | [optional] +**collaboratorIds** | **string[]** | A list of the collaborators uuids for this ticket. | [optional] +**hasIncidents** | **bool** | Whether or not this ticket has incidents. | [optional] +**due** | **\DateTime** | A time that the ticket is due at. | [optional] +**tags** | **string[]** | A list of tags assigned to the ticket. | [optional] +**subscriptionId** | **string** | The internal ID of the subscription. | [optional] +**ticketGroup** | **string** | Maps to zendesk field 'Request group'. | [optional] +**supportPlan** | **string** | Maps to zendesk field 'The support plan associated with this ticket. | [optional] +**affectedUrl** | **string** | The affected URL associated with the support ticket. | [optional] +**queue** | **string** | The queue the support ticket is in. | [optional] +**issueType** | **string** | The issue type of the support ticket. | [optional] +**resolutionTime** | **\DateTime** | Maps to zendesk field 'Resolution Time'. | [optional] +**responseTime** | **\DateTime** | Maps to zendesk field 'Response Time (time from request to reply). | [optional] +**projectUrl** | **string** | Maps to zendesk field 'Project URL'. | [optional] +**region** | **string** | Maps to zendesk field 'Region'. | [optional] +**category** | **string** | Maps to zendesk field 'Category'. | [optional] +**environment** | **string** | Maps to zendesk field 'Environment'. | [optional] +**ticketSharingStatus** | **string** | Maps to zendesk field 'Ticket Sharing Status'. | [optional] +**applicationTicketUrl** | **string** | Maps to zendesk field 'Application Ticket URL'. | [optional] +**infrastructureTicketUrl** | **string** | Maps to zendesk field 'Infrastructure Ticket URL'. | [optional] +**jira** | [**\Upsun\Model\TicketJiraInner[]**](TicketJiraInner.md) | A list of JIRA issues related to the support ticket. | [optional] +**zdTicketUrl** | **string** | URL to the customer-facing ticket in Zendesk. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TicketJiraInner.md b/docs/Model/TicketJiraInner.md new file mode 100644 index 00000000..648cbcdd --- /dev/null +++ b/docs/Model/TicketJiraInner.md @@ -0,0 +1,14 @@ +# # TicketJiraInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **int** | The id of the query. | [optional] +**ticketId** | **int** | The id of the ticket. | [optional] +**issueId** | **int** | The issue id number. | [optional] +**issueKey** | **string** | The issue key. | [optional] +**createdAt** | **float** | The created at timestamp. | [optional] +**updatedAt** | **float** | The updated at timestamp. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Tree.md b/docs/Model/Tree.md new file mode 100644 index 00000000..54cb1218 --- /dev/null +++ b/docs/Model/Tree.md @@ -0,0 +1,11 @@ +# # Tree + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Tree | +**sha** | **string** | The identifier of the tree | +**tree** | [**\Upsun\Model\TreeItemsInner[]**](TreeItemsInner.md) | The tree items | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/TreeItemsInner.md b/docs/Model/TreeItemsInner.md new file mode 100644 index 00000000..184d24e4 --- /dev/null +++ b/docs/Model/TreeItemsInner.md @@ -0,0 +1,12 @@ +# # TreeItemsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**path** | **string** | The path of the item | +**mode** | **string** | The mode of the item | +**type** | **string** | The type of the item (blob or tree) | +**sha** | **string** | The sha of the item | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgAddonsRequest.md b/docs/Model/UpdateOrgAddonsRequest.md new file mode 100644 index 00000000..b857e322 --- /dev/null +++ b/docs/Model/UpdateOrgAddonsRequest.md @@ -0,0 +1,10 @@ +# # UpdateOrgAddonsRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userManagement** | **string** | The user management level to apply. | [optional] +**supportLevel** | **string** | The support level to apply. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgBillingAlertConfigRequest.md b/docs/Model/UpdateOrgBillingAlertConfigRequest.md new file mode 100644 index 00000000..03021b88 --- /dev/null +++ b/docs/Model/UpdateOrgBillingAlertConfigRequest.md @@ -0,0 +1,10 @@ +# # UpdateOrgBillingAlertConfigRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**active** | **bool** | Whether the billing alert should be active or not. | [optional] +**config** | [**\Upsun\Model\UpdateOrgBillingAlertConfigRequestConfig**](UpdateOrgBillingAlertConfigRequestConfig.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgBillingAlertConfigRequestConfig.md b/docs/Model/UpdateOrgBillingAlertConfigRequestConfig.md new file mode 100644 index 00000000..83aa73a2 --- /dev/null +++ b/docs/Model/UpdateOrgBillingAlertConfigRequestConfig.md @@ -0,0 +1,10 @@ +# # UpdateOrgBillingAlertConfigRequestConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**threshold** | **int** | The amount after which a billing alert should be triggered. | [optional] +**mode** | **string** | The mode in which the alert is triggered. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgMemberRequest.md b/docs/Model/UpdateOrgMemberRequest.md new file mode 100644 index 00000000..98cdd4a8 --- /dev/null +++ b/docs/Model/UpdateOrgMemberRequest.md @@ -0,0 +1,9 @@ +# # UpdateOrgMemberRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**permissions** | **string[]** | The organization member permissions. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgProfileRequest.md b/docs/Model/UpdateOrgProfileRequest.md new file mode 100644 index 00000000..2ed44190 --- /dev/null +++ b/docs/Model/UpdateOrgProfileRequest.md @@ -0,0 +1,14 @@ +# # UpdateOrgProfileRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**defaultCatalog** | **string** | The URL of a catalog file which overrides the default. | [optional] +**projectOptionsUrl** | **string** | The URL of an organization-wide project options file. | [optional] +**securityContact** | **string** | The e-mail address of a contact to whom security notices will be sent. | [optional] +**companyName** | **string** | The company name. | [optional] +**vatNumber** | **string** | The VAT number of the company. | [optional] +**billingContact** | **string** | The e-mail address of a contact to whom billing notices will be sent. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgProjectRequest.md b/docs/Model/UpdateOrgProjectRequest.md new file mode 100644 index 00000000..d97a59d6 --- /dev/null +++ b/docs/Model/UpdateOrgProjectRequest.md @@ -0,0 +1,13 @@ +# # UpdateOrgProjectRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | The title of the project. | [optional] +**plan** | **string** | The project plan. | [optional] +**timezone** | **string** | Timezone of the project. | [optional] +**cseNotes** | **string** | CSE notes. | [optional] +**dedicatedTag** | **string** | Dedicated tag. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgRequest.md b/docs/Model/UpdateOrgRequest.md new file mode 100644 index 00000000..71f0de3e --- /dev/null +++ b/docs/Model/UpdateOrgRequest.md @@ -0,0 +1,11 @@ +# # UpdateOrgRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **string** | A unique machine name representing the organization. | [optional] +**label** | **string** | The human-readable label of the organization. | [optional] +**country** | **string** | The organization country (2-letter country code). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateOrgSubscriptionRequest.md b/docs/Model/UpdateOrgSubscriptionRequest.md new file mode 100644 index 00000000..5bdf5c44 --- /dev/null +++ b/docs/Model/UpdateOrgSubscriptionRequest.md @@ -0,0 +1,20 @@ +# # UpdateOrgSubscriptionRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**projectTitle** | **string** | The title of the project. | [optional] +**plan** | **string** | The project plan. | [optional] +**timezone** | **string** | Timezone of the project. | [optional] +**environments** | **int** | The maximum number of environments which can be provisioned on the project. | [optional] +**storage** | **int** | The total storage available to each environment, in MiB. | [optional] +**bigDev** | **string** | The development environment plan. | [optional] +**bigDevService** | **string** | The development service plan. | [optional] +**backups** | **string** | The backups plan. | [optional] +**observabilitySuite** | **string** | The observability suite option. | [optional] +**blackfire** | **string** | The Blackfire integration option. | [optional] +**continuousProfiling** | **string** | The Blackfire continuous profiling option. | [optional] +**projectSupportLevel** | **string** | The project uptime option. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateProfileRequest.md b/docs/Model/UpdateProfileRequest.md new file mode 100644 index 00000000..a7d322d4 --- /dev/null +++ b/docs/Model/UpdateProfileRequest.md @@ -0,0 +1,21 @@ +# # UpdateProfileRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**displayName** | **string** | The user's display name. | [optional] +**username** | **string** | The user's username. | [optional] +**currentPassword** | **string** | The user's current password. | [optional] +**password** | **string** | The user's new password. | [optional] +**companyType** | **string** | The company type. | [optional] +**companyName** | **string** | The name of the company. | [optional] +**vatNumber** | **string** | The vat number of the user. | [optional] +**companyRole** | **string** | The role of the user in the company. | [optional] +**marketing** | **bool** | Flag if the user agreed to receive marketing communication. | [optional] +**uiColorscheme** | **string** | The user's chosen color scheme for user interfaces. Available values are 'light' and 'dark'. | [optional] +**defaultCatalog** | **string** | The URL of a catalog file which overrides the default. | [optional] +**projectOptionsUrl** | **string** | The URL of an account-wide project options file. | [optional] +**picture** | **string** | Url of the user's picture. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateProjectUserAccessRequest.md b/docs/Model/UpdateProjectUserAccessRequest.md new file mode 100644 index 00000000..a9fa81a7 --- /dev/null +++ b/docs/Model/UpdateProjectUserAccessRequest.md @@ -0,0 +1,9 @@ +# # UpdateProjectUserAccessRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**permissions** | **string[]** | An array of project permissions. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.md b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.md new file mode 100644 index 00000000..1d7de005 --- /dev/null +++ b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.md @@ -0,0 +1,11 @@ +# # UpdateProjectsEnvironmentsDeploymentsNextRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**webapps** | [**array**](UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.md) | | [optional] +**services** | [**array**](UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md) | | [optional] +**workers** | [**array**](UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md new file mode 100644 index 00000000..14ea68a3 --- /dev/null +++ b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md @@ -0,0 +1,11 @@ +# # UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\ResourceConfig**](ResourceConfig.md) | | [optional] +**instanceCount** | **int** | Number of instances to run | [optional] +**disk** | **int** | Size of the disk in Bytes | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.md b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.md new file mode 100644 index 00000000..222afb09 --- /dev/null +++ b/docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.md @@ -0,0 +1,11 @@ +# # UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\ResourceConfig**](ResourceConfig.md) | | [optional] +**instanceCount** | **int** | Number of instances to run | [optional] +**disk** | **int** | Size of the disk in Bytes | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateSubscriptionUsageAlertsRequest.md b/docs/Model/UpdateSubscriptionUsageAlertsRequest.md new file mode 100644 index 00000000..be0db5b6 --- /dev/null +++ b/docs/Model/UpdateSubscriptionUsageAlertsRequest.md @@ -0,0 +1,9 @@ +# # UpdateSubscriptionUsageAlertsRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**alerts** | [**\Upsun\Model\UpdateSubscriptionUsageAlertsRequestAlertsInner[]**](UpdateSubscriptionUsageAlertsRequestAlertsInner.md) | The list of alerts to update. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.md b/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.md new file mode 100644 index 00000000..6008903d --- /dev/null +++ b/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.md @@ -0,0 +1,11 @@ +# # UpdateSubscriptionUsageAlertsRequestAlertsInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The usage alert identifier. | [optional] +**active** | **bool** | Whether the alert is activated. | [optional] +**config** | [**\Upsun\Model\UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig**](UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.md b/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.md new file mode 100644 index 00000000..ecfc5858 --- /dev/null +++ b/docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.md @@ -0,0 +1,9 @@ +# # UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**threshold** | **int** | The amount after which an alert should be triggered. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateTeamRequest.md b/docs/Model/UpdateTeamRequest.md new file mode 100644 index 00000000..d0bbf24e --- /dev/null +++ b/docs/Model/UpdateTeamRequest.md @@ -0,0 +1,10 @@ +# # UpdateTeamRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**label** | **string** | The human-readable label of the team. | [optional] +**projectPermissions** | **string[]** | Project permissions that are granted to the team. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateTicketRequest.md b/docs/Model/UpdateTicketRequest.md new file mode 100644 index 00000000..eb075f70 --- /dev/null +++ b/docs/Model/UpdateTicketRequest.md @@ -0,0 +1,11 @@ +# # UpdateTicketRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status** | **string** | The status of the support ticket. | [optional] +**collaboratorIds** | **string[]** | A list of collaborators uuids for the ticket. | [optional] +**collaboratorsReplace** | **bool** | Whether or not should replace ticket collaborators with the provided values. If false, the collaborators will be appended. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateUsageAlertsRequest.md b/docs/Model/UpdateUsageAlertsRequest.md new file mode 100644 index 00000000..1e3cd76d --- /dev/null +++ b/docs/Model/UpdateUsageAlertsRequest.md @@ -0,0 +1,9 @@ +# # UpdateUsageAlertsRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**alerts** | [**\Upsun\Model\Alert[]**](Alert.md) | The list of usage alerts to create or update. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateUserRequest.md b/docs/Model/UpdateUserRequest.md new file mode 100644 index 00000000..de3381a7 --- /dev/null +++ b/docs/Model/UpdateUserRequest.md @@ -0,0 +1,15 @@ +# # UpdateUserRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**username** | **string** | The user's username. | [optional] +**firstName** | **string** | The user's first name. | [optional] +**lastName** | **string** | The user's last name. | [optional] +**picture** | **string** | The user's picture. | [optional] +**company** | **string** | The user's company. | [optional] +**website** | **string** | The user's website. | [optional] +**country** | **string** | The user's country (2-letter country code). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpstreamConfiguration.md b/docs/Model/UpstreamConfiguration.md new file mode 100644 index 00000000..4fdec23d --- /dev/null +++ b/docs/Model/UpstreamConfiguration.md @@ -0,0 +1,10 @@ +# # UpstreamConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**socketFamily** | **string** | If `tcp`, check the PORT environment variable on application startup. If `unix`, check SOCKET. | +**protocol** | **string** | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpstreamRoute.md b/docs/Model/UpstreamRoute.md new file mode 100644 index 00000000..7d4d66d9 --- /dev/null +++ b/docs/Model/UpstreamRoute.md @@ -0,0 +1,20 @@ +# # UpstreamRoute + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | **array** | Arbitrary attributes attached to this resource | +**type** | **string** | Route type. | +**tls** | [**\Upsun\Model\TLSSettings**](TLSSettings.md) | | +**id** | **string** | The identifier of UpstreamRoute | [optional] +**primary** | **bool** | This route is the primary route of the environment | [optional] +**productionUrl** | **string** | How this URL route would look on production environment | [optional] +**cache** | [**\Upsun\Model\CacheConfiguration**](CacheConfiguration.md) | | [optional] +**ssi** | [**\Upsun\Model\SSIConfiguration**](SSIConfiguration.md) | | [optional] +**upstream** | **string** | The upstream to use for this route. | [optional] +**redirects** | [**\Upsun\Model\RedirectConfiguration**](RedirectConfiguration.md) | | [optional] +**sticky** | [**\Upsun\Model\StickyConfiguration**](StickyConfiguration.md) | | [optional] +**to** | **string** | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Usage.md b/docs/Model/Usage.md new file mode 100644 index 00000000..7e875b77 --- /dev/null +++ b/docs/Model/Usage.md @@ -0,0 +1,13 @@ +# # Usage + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The unique ID of the usage record. | [optional] +**subscriptionId** | **string** | The ID of the subscription. | [optional] +**usageGroup** | **string** | The type of usage that this record represents. | [optional] +**quantity** | **float** | The quantity used. | [optional] +**start** | **\DateTime** | The start timestamp of this usage record (ISO 8601). | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UsageAlert.md b/docs/Model/UsageAlert.md new file mode 100644 index 00000000..295ea6f6 --- /dev/null +++ b/docs/Model/UsageAlert.md @@ -0,0 +1,14 @@ +# # UsageAlert + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | Tidentifier of the alert. | [optional] +**active** | **bool** | Whether the usage alert is activated. | [optional] +**alertsSent** | **float** | Number of alerts sent. | [optional] +**lastAlertAt** | **string** | The datetime the alert was last sent. | [optional] +**updatedAt** | **string** | The datetime the alert was last updated. | [optional] +**config** | [**\Upsun\Model\UsageAlertConfig**](UsageAlertConfig.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UsageAlertConfig.md b/docs/Model/UsageAlertConfig.md new file mode 100644 index 00000000..c9858945 --- /dev/null +++ b/docs/Model/UsageAlertConfig.md @@ -0,0 +1,9 @@ +# # UsageAlertConfig + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**threshold** | [**\Upsun\Model\UsageAlertConfigThreshold**](UsageAlertConfigThreshold.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UsageAlertConfigThreshold.md b/docs/Model/UsageAlertConfigThreshold.md new file mode 100644 index 00000000..d3f27e93 --- /dev/null +++ b/docs/Model/UsageAlertConfigThreshold.md @@ -0,0 +1,11 @@ +# # UsageAlertConfigThreshold + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**formatted** | **string** | Formatted threshold value. | [optional] +**amount** | **float** | Threshold value. | [optional] +**unit** | **string** | Threshold unit. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UsageGroupCurrentUsageProperties.md b/docs/Model/UsageGroupCurrentUsageProperties.md new file mode 100644 index 00000000..36d99c26 --- /dev/null +++ b/docs/Model/UsageGroupCurrentUsageProperties.md @@ -0,0 +1,17 @@ +# # UsageGroupCurrentUsageProperties + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**title** | **string** | The title of the usage group. | [optional] +**type** | **bool** | The usage group type. | [optional] +**currentUsage** | **float** | The value of current usage for the group. | [optional] +**currentUsageFormatted** | **string** | The formatted value of current usage for the group. | [optional] +**notCharged** | **bool** | Whether the group is not charged for the subscription. | [optional] +**freeQuantity** | **float** | The amount of free usage for the group. | [optional] +**freeQuantityFormatted** | **string** | The formatted amount of free usage for the group. | [optional] +**dailyAverage** | **float** | The daily average usage calculated for the group. | [optional] +**dailyAverageFormatted** | **string** | The formatted daily average usage calculated for the group. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/User.md b/docs/Model/User.md new file mode 100644 index 00000000..6dd10065 --- /dev/null +++ b/docs/Model/User.md @@ -0,0 +1,24 @@ +# # User + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the user. | +**deactivated** | **bool** | Whether the user has been deactivated. | +**namespace** | **string** | The namespace in which the user's username is unique. | +**username** | **string** | The user's username. | +**email** | **string** | The user's email address. | +**emailVerified** | **bool** | Whether the user's email address has been verified. | +**firstName** | **string** | The user's first name. | +**lastName** | **string** | The user's last name. | +**picture** | **string** | The user's picture. | +**company** | **string** | The user's company. | +**website** | **string** | The user's website. | +**country** | **string** | The user's ISO 3166-1 alpha-2 country code. | +**createdAt** | **\DateTime** | The date and time when the user was created. | +**updatedAt** | **\DateTime** | The date and time when the user was last updated. | +**consentedAt** | **\DateTime** | The date and time when the user consented to the Terms of Service. | [optional] +**consentMethod** | **string** | The method by which the user consented to the Terms of Service. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UserProjectAccess.md b/docs/Model/UserProjectAccess.md new file mode 100644 index 00000000..6528e746 --- /dev/null +++ b/docs/Model/UserProjectAccess.md @@ -0,0 +1,16 @@ +# # UserProjectAccess + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**userId** | **string** | The ID of the user. | [optional] +**organizationId** | **string** | The ID of the organization. | [optional] +**projectId** | **string** | The ID of the project. | [optional] +**projectTitle** | **string** | The title of the project. | [optional] +**permissions** | **string[]** | An array of project permissions. | [optional] +**grantedAt** | **\DateTime** | The date and time when the access was granted. | [optional] +**updatedAt** | **\DateTime** | The date and time when the access was last updated. | [optional] +**links** | [**\Upsun\Model\TeamProjectAccessLinks**](TeamProjectAccessLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UserReference.md b/docs/Model/UserReference.md new file mode 100644 index 00000000..2435baa5 --- /dev/null +++ b/docs/Model/UserReference.md @@ -0,0 +1,16 @@ +# # UserReference + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The ID of the user. | [optional] +**username** | **string** | The user's username. | [optional] +**email** | **string** | The user's email address. | [optional] +**firstName** | **string** | The user's first name. | [optional] +**lastName** | **string** | The user's last name. | [optional] +**picture** | **string** | The user's picture. | [optional] +**mfaEnabled** | **bool** | Whether the user has enabled MFA. Note: the built-in MFA feature may not be necessary if the user is linked to a mandatory SSO provider that itself supports MFA (see \"sso_enabled\\\"). | [optional] +**ssoEnabled** | **bool** | Whether the user is linked to a mandatory SSO provider. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VPNConfiguration.md b/docs/Model/VPNConfiguration.md new file mode 100644 index 00000000..22b5fdcf --- /dev/null +++ b/docs/Model/VPNConfiguration.md @@ -0,0 +1,22 @@ +# # VPNConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**version** | **int** | The IKE version to use (1 or 2) | +**aggressive** | **string** | Whether to use IKEv1 Aggressive or Main Mode | +**modeconfig** | **string** | Defines which mode is used to assign a virtual IP (must be the same on both sides) | +**authentication** | **string** | The authentication scheme | +**gatewayIp** | **string** | | +**identity** | **string** | The identity of the ipsec participant | +**secondIdentity** | **string** | The second identity of the ipsec participant | +**remoteIdentity** | **string** | The identity of the remote ipsec participant | +**remoteSubnets** | **string[]** | Remote subnets (CIDR notation) | +**ike** | **string** | The IKE algorithms to negotiate for this VPN connection. | +**esp** | **string** | The ESP algorithms to negotiate for this VPN connection. | +**ikelifetime** | **string** | The lifetime of the IKE exchange. | +**lifetime** | **string** | The lifetime of the ESP exchange. | +**margintime** | **string** | The margin time for re-keying. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VerifyPhoneNumber200Response.md b/docs/Model/VerifyPhoneNumber200Response.md new file mode 100644 index 00000000..45835e67 --- /dev/null +++ b/docs/Model/VerifyPhoneNumber200Response.md @@ -0,0 +1,9 @@ +# # VerifyPhoneNumber200Response + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**sid** | **string** | Session ID of the verification. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VerifyPhoneNumberRequest.md b/docs/Model/VerifyPhoneNumberRequest.md new file mode 100644 index 00000000..47e5e60d --- /dev/null +++ b/docs/Model/VerifyPhoneNumberRequest.md @@ -0,0 +1,10 @@ +# # VerifyPhoneNumberRequest + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**channel** | **string** | The channel used to receive the verification code. | +**phoneNumber** | **string** | The phone number used to receive the verification code. | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Version.md b/docs/Model/Version.md new file mode 100644 index 00000000..d8116f44 --- /dev/null +++ b/docs/Model/Version.md @@ -0,0 +1,12 @@ +# # Version + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **string** | The identifier of Version | +**commit** | **string** | The SHA of the commit of this version | +**locked** | **bool** | Whether this version is locked and cannot be modified | +**routing** | [**\Upsun\Model\Routing**](Routing.md) | | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VersionCreateInput.md b/docs/Model/VersionCreateInput.md new file mode 100644 index 00000000..e85cc25b --- /dev/null +++ b/docs/Model/VersionCreateInput.md @@ -0,0 +1,9 @@ +# # VersionCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**routing** | [**\Upsun\Model\Routing1**](Routing1.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VersionPatch.md b/docs/Model/VersionPatch.md new file mode 100644 index 00000000..cf9c45b5 --- /dev/null +++ b/docs/Model/VersionPatch.md @@ -0,0 +1,9 @@ +# # VersionPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**routing** | [**\Upsun\Model\Routing1**](Routing1.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Vouchers.md b/docs/Model/Vouchers.md new file mode 100644 index 00000000..6b595b98 --- /dev/null +++ b/docs/Model/Vouchers.md @@ -0,0 +1,15 @@ +# # Vouchers + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**uuid** | **string** | The uuid of the user. | [optional] +**vouchersTotal** | **string** | The total voucher credit given to the user. | [optional] +**vouchersApplied** | **string** | The part of total voucher credit applied to orders. | [optional] +**vouchersRemainingBalance** | **string** | The remaining voucher credit, available for future orders. | [optional] +**currency** | **string** | The currency of the vouchers. | [optional] +**vouchers** | [**\Upsun\Model\VouchersVouchersInner[]**](VouchersVouchersInner.md) | Array of vouchers. | [optional] +**links** | [**\Upsun\Model\VouchersLinks**](VouchersLinks.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VouchersLinks.md b/docs/Model/VouchersLinks.md new file mode 100644 index 00000000..79a98e19 --- /dev/null +++ b/docs/Model/VouchersLinks.md @@ -0,0 +1,9 @@ +# # VouchersLinks + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**self** | [**\Upsun\Model\VouchersLinksSelf**](VouchersLinksSelf.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VouchersLinksSelf.md b/docs/Model/VouchersLinksSelf.md new file mode 100644 index 00000000..2fa5af44 --- /dev/null +++ b/docs/Model/VouchersLinksSelf.md @@ -0,0 +1,9 @@ +# # VouchersLinksSelf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**href** | **string** | URL of the link. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VouchersVouchersInner.md b/docs/Model/VouchersVouchersInner.md new file mode 100644 index 00000000..9c5453f3 --- /dev/null +++ b/docs/Model/VouchersVouchersInner.md @@ -0,0 +1,12 @@ +# # VouchersVouchersInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**code** | **string** | The voucher code. | [optional] +**amount** | **string** | The total voucher credit. | [optional] +**currency** | **string** | The currency of the voucher. | [optional] +**orders** | [**\Upsun\Model\VouchersVouchersInnerOrdersInner[]**](VouchersVouchersInnerOrdersInner.md) | Array of orders to which a voucher applied. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/VouchersVouchersInnerOrdersInner.md b/docs/Model/VouchersVouchersInnerOrdersInner.md new file mode 100644 index 00000000..4bb3cbdd --- /dev/null +++ b/docs/Model/VouchersVouchersInnerOrdersInner.md @@ -0,0 +1,15 @@ +# # VouchersVouchersInnerOrdersInner + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**orderId** | **string** | The id of the order. | [optional] +**status** | **string** | The status of the order. | [optional] +**billingPeriodStart** | **string** | The billing period start timestamp of the order (ISO 8601). | [optional] +**billingPeriodEnd** | **string** | The billing period end timestamp of the order (ISO 8601). | [optional] +**orderTotal** | **string** | The total of the order. | [optional] +**orderDiscount** | **string** | The total voucher credit applied to the order. | [optional] +**currency** | **string** | The currency of the order. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebApplicationsValue.md b/docs/Model/WebApplicationsValue.md new file mode 100644 index 00000000..b1ea20be --- /dev/null +++ b/docs/Model/WebApplicationsValue.md @@ -0,0 +1,38 @@ +# # WebApplicationsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\Resources**](Resources.md) | | +**size** | **string** | The container size for this application in production. Leave blank to allow it to be set dynamically. | +**disk** | **int** | The size of the disk. | +**access** | **array** | Access information, a mapping between access type and roles. | +**relationships** | [**array**](ServiceRelationshipsValue.md) | The relationships of the application to defined services. | +**additionalHosts** | **array** | A mapping of hostname to ip address to be added to the container's hosts file | +**mounts** | [**array**](MountsValue.md) | Filesystem mounts of this application. If not specified the application will have no writeable disk space. | +**timezone** | **string** | The timezone of the application. This primarily affects the timezone in which cron tasks will run. It will not affect the application itself. Defaults to UTC if not specified. | +**variables** | **array>** | Variables provide environment-sensitive information to control how your application behaves. To set a Unix environment variable, specify a key of `env:`, and then each sub-item of that is a key/value pair that will be injected into the environment. | +**firewall** | [**\Upsun\Model\Firewall**](Firewall.md) | | +**containerProfile** | **string** | Selected container profile for the application | +**operations** | [**array**](OperationsValue.md) | Operations that can be triggered on this application | +**name** | **string** | The name of the application. Must be unique within a project. | +**type** | **string** | The base runtime and version to use for this worker. | +**preflight** | [**\Upsun\Model\PreflightChecks**](PreflightChecks.md) | | +**treeId** | **string** | The identifier of the source tree of the application | +**appDir** | **string** | The path of the application in the container | +**endpoints** | **object** | | +**runtime** | **object** | Runtime-specific configuration. | +**web** | [**\Upsun\Model\WebConfiguration**](WebConfiguration.md) | | +**hooks** | [**\Upsun\Model\Hooks**](Hooks.md) | | +**crons** | [**array**](CronsValue.md) | Scheduled cron tasks executed by this application. | +**source** | [**\Upsun\Model\SourceCodeConfiguration**](SourceCodeConfiguration.md) | | +**build** | [**\Upsun\Model\BuildConfiguration**](BuildConfiguration.md) | | +**dependencies** | **array** | External global dependencies of this application. They will be downloaded by the language's package manager. | +**stack** | **object[]** | | +**isAcrossSubmodule** | **bool** | Is this application coming from a submodule | +**instanceCount** | **int** | Instance replication count of this application | +**configId** | **string** | | +**slugId** | **string** | The identifier of the built artifact of the application | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebConfiguration.md b/docs/Model/WebConfiguration.md new file mode 100644 index 00000000..852b89a5 --- /dev/null +++ b/docs/Model/WebConfiguration.md @@ -0,0 +1,18 @@ +# # WebConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**locations** | [**array**](WebLocationsValue.md) | The specification of the web locations served by this application. | +**moveToRoot** | **bool** | Whether to move the whole root of the app to the document root. | +**commands** | [**\Upsun\Model\Commands1**](Commands1.md) | | [optional] +**upstream** | [**\Upsun\Model\UpstreamConfiguration**](UpstreamConfiguration.md) | | [optional] +**documentRoot** | **string** | The document root of this application, relative to its root. | [optional] +**passthru** | **string** | The URL to use as a passthru if a file doesn't match the whitelist. | [optional] +**indexFiles** | **string[]** | Files to look for to serve directories. | [optional] +**whitelist** | **string[]** | Whitelisted entries. | [optional] +**blacklist** | **string[]** | Blacklisted entries. | [optional] +**expires** | **string** | Amount of time to cache static assets. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebHookIntegration.md b/docs/Model/WebHookIntegration.md new file mode 100644 index 00000000..e4331259 --- /dev/null +++ b/docs/Model/WebHookIntegration.md @@ -0,0 +1,19 @@ +# # WebHookIntegration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**createdAt** | **\DateTime** | The creation date | +**updatedAt** | **\DateTime** | The update date | +**type** | **string** | | +**events** | **string[]** | Events to execute the hook on | +**environments** | **string[]** | The environments to execute the hook on | +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | +**states** | **string[]** | Events to execute the hook on | +**result** | **string** | Result to execute the hook on | +**sharedKey** | **string** | The JWS shared secret key | +**url** | **string** | The URL of the webhook | +**id** | **string** | The identifier of WebHookIntegration | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebHookIntegrationCreateInput.md b/docs/Model/WebHookIntegrationCreateInput.md new file mode 100644 index 00000000..b08eebb0 --- /dev/null +++ b/docs/Model/WebHookIntegrationCreateInput.md @@ -0,0 +1,16 @@ +# # WebHookIntegrationCreateInput + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The URL of the webhook | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] +**sharedKey** | **string** | The JWS shared secret key | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebHookIntegrationPatch.md b/docs/Model/WebHookIntegrationPatch.md new file mode 100644 index 00000000..30006123 --- /dev/null +++ b/docs/Model/WebHookIntegrationPatch.md @@ -0,0 +1,16 @@ +# # WebHookIntegrationPatch + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**type** | **string** | | +**url** | **string** | The URL of the webhook | +**events** | **string[]** | Events to execute the hook on | [optional] +**environments** | **string[]** | The environments to execute the hook on | [optional] +**excludedEnvironments** | **string[]** | The environments to not execute the hook on | [optional] +**states** | **string[]** | Events to execute the hook on | [optional] +**result** | **string** | Result to execute the hook on | [optional] +**sharedKey** | **string** | The JWS shared secret key | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WebLocationsValue.md b/docs/Model/WebLocationsValue.md new file mode 100644 index 00000000..c10d77f9 --- /dev/null +++ b/docs/Model/WebLocationsValue.md @@ -0,0 +1,17 @@ +# # WebLocationsValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**root** | **string** | The folder from which to serve static assets for this location relative to the application root. | +**expires** | **string** | Amount of time to cache static assets. | +**passthru** | **string** | Whether to forward disallowed and missing resources from this location to the application. On PHP, set to the PHP front controller script, as a URL fragment. Otherwise set to `true`/`false`. | +**scripts** | **bool** | Whether to execute scripts in this location (for script based runtimes). | +**allow** | **bool** | Whether to allow access to this location by default. | +**headers** | **array** | A set of header fields set to the HTTP response. Applies only to static files, not responses from the application. | +**rules** | [**array**](SpecificOverridesValue.md) | Specific overrides. | +**index** | **string[]** | Files to look for to serve directories. | [optional] +**requestBuffering** | [**\Upsun\Model\RequestBuffering**](RequestBuffering.md) | | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/Webhook.md b/docs/Model/Webhook.md new file mode 100644 index 00000000..a2ff2c24 --- /dev/null +++ b/docs/Model/Webhook.md @@ -0,0 +1,10 @@ +# # Webhook + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **bool** | The integration is enabled. | [optional] +**role** | **string** | Minimum required role for creating the integration. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WorkerConfiguration.md b/docs/Model/WorkerConfiguration.md new file mode 100644 index 00000000..78af3079 --- /dev/null +++ b/docs/Model/WorkerConfiguration.md @@ -0,0 +1,10 @@ +# # WorkerConfiguration + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**commands** | [**\Upsun\Model\Commands2**](Commands2.md) | | +**disk** | **int** | The writeable disk size to reserve on this application container. | [optional] + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/WorkersValue.md b/docs/Model/WorkersValue.md new file mode 100644 index 00000000..6f514ed6 --- /dev/null +++ b/docs/Model/WorkersValue.md @@ -0,0 +1,32 @@ +# # WorkersValue + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**resources** | [**\Upsun\Model\Resources**](Resources.md) | | +**size** | **string** | The container size for this application in production. Leave blank to allow it to be set dynamically. | +**disk** | **int** | The writeable disk size to reserve on this application container. | +**access** | **array** | Access information, a mapping between access type and roles. | +**relationships** | [**array**](ServiceRelationshipsValue.md) | The relationships of the application to defined services. | +**additionalHosts** | **array** | A mapping of hostname to ip address to be added to the container's hosts file | +**mounts** | [**array**](MountsValue.md) | Filesystem mounts of this application. If not specified the application will have no writeable disk space. | +**timezone** | **string** | The timezone of the application. This primarily affects the timezone in which cron tasks will run. It will not affect the application itself. Defaults to UTC if not specified. | +**variables** | **array>** | Variables provide environment-sensitive information to control how your application behaves. To set a Unix environment variable, specify a key of `env:`, and then each sub-item of that is a key/value pair that will be injected into the environment. | +**firewall** | [**\Upsun\Model\Firewall**](Firewall.md) | | +**containerProfile** | **string** | Selected container profile for the application | +**operations** | [**array**](OperationsValue.md) | Operations that can be triggered on this application | +**name** | **string** | The name of the worker. | +**type** | **string** | The base runtime and version to use for this worker. | +**preflight** | [**\Upsun\Model\PreflightChecks**](PreflightChecks.md) | | +**treeId** | **string** | The identifier of the source tree of the application | +**appDir** | **string** | The path of the application in the container | +**endpoints** | **object** | | +**runtime** | **object** | Runtime-specific configuration. | +**worker** | [**\Upsun\Model\WorkerConfiguration**](WorkerConfiguration.md) | | +**app** | **string** | | +**stack** | **object[]** | | +**instanceCount** | **int** | Instance replication count of this worker | +**slugId** | **string** | The identifier of the built artifact of the application | + +[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) diff --git a/docs/classes/Upsun/Api/ApiConfiguration.md b/docs/classes/Upsun/Api/ApiConfiguration.md new file mode 100644 index 00000000..4400fcbd --- /dev/null +++ b/docs/classes/Upsun/Api/ApiConfiguration.md @@ -0,0 +1,242 @@ +# ApiConfiguration + +APIConfiguration holder for the Upsun API Client. + +This class holds API token and other runtime options +used by the generated client classes. + +*** + +* Full name: `\Upsun\Api\ApiConfiguration` +* This class is marked as **final** and can't be subclassed + +**See Also:** + +* https://docs.upsun.com + +## Constants + +| Constant | Visibility | Type | Value | +|----------------------|------------|------|-------| +| `BOOLEAN_FORMAT_INT` | public | | 'int' | + +## Properties + +### defaultConfiguration + +```php +private static ?\Upsun\Api\ApiConfiguration $defaultConfiguration +``` + +* This property is **static**. + +*** + +### accessToken + +Access token for OAuth/Bearer authentication + +```php +protected string $accessToken +``` + +*** + +### booleanFormatForQueryString + +Boolean format for query string + +```php +protected string $booleanFormatForQueryString +``` + +*** + +### username + +Username for HTTP basic authentication + +```php +protected string $username +``` + +*** + +### password + +Password for HTTP basic authentication + +```php +protected string $password +``` + +*** + +### host + +The host + +```php +protected string $host +``` + +*** + +### userAgent + +User agent of the HTTP request, set to "OpenAPI-Generator/{version}/PHP" by default + +```php +protected string $userAgent +``` + +*** + +### debug + +Debug switch (default set to false) + +```php +protected bool $debug +``` + +*** + +### tempFolderPath + +Debug file location (log to STDOUT by default) + +```php +protected string $tempFolderPath +``` + +*** + +## Methods + +### __construct + +```php +public __construct(): mixed +``` + +*** + +### getAccessToken + +Gets the access token for OAuth + +```php +public getAccessToken(): string +``` + +*** + +### getBooleanFormatForQueryString + +Gets boolean format for query string. + +```php +public getBooleanFormatForQueryString(): string +``` + +*** + +### getUsername + +Gets the username for HTTP basic authentication + +```php +public getUsername(): string +``` + +*** + +### setPassword + +Sets the password for HTTP basic authentication + +```php +public setPassword(string $password): self +``` + +**Parameters:** + +| Parameter | Type | Description | +|-------------|------------|-------------| +| `$password` | **string** | | + +*** + +### setHost + +Sets the host + +```php +public setHost(string $host): self +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$host` | **string** | | + +*** + +### getHost + +Gets the host + +```php +public getHost(): string +``` + +*** + +### getUserAgent + +Gets the user agent of the api client + +```php +public getUserAgent(): string +``` + +*** + +### setDebug + +Sets debug flag + +```php +public setDebug(bool $debug): self +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|----------|-------------| +| `$debug` | **bool** | | + +*** + +### getTempFolderPath + +Gets the temp folder path + +```php +public getTempFolderPath(): string +``` + +*** + +### getDefaultConfiguration + +Gets the default configuration instance + +```php +public static getDefaultConfiguration(): \Upsun\Api\ApiConfiguration +``` + +* This method is **static**. +*** diff --git a/docs/classes/Upsun/Api/ApiHeaderSelector.md b/docs/classes/Upsun/Api/ApiHeaderSelector.md new file mode 100644 index 00000000..7977c356 --- /dev/null +++ b/docs/classes/Upsun/Api/ApiHeaderSelector.md @@ -0,0 +1,176 @@ +# ApiHeaderSelector + +HeaderSelector Class Doc Comment + +*** + +* Full name: `\Upsun\Api\ApiHeaderSelector` + +**See Also:** + +* https://docs.upsun.com + +## Methods + +### selectHeaders + +```php +public selectHeaders(array $accept, string $contentType, bool $isMultipart): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|----------------|------------|-------------| +| `$accept` | **array** | | +| `$contentType` | **string** | | +| `$isMultipart` | **bool** | | + +*** + +### selectAcceptHeader + +Return the header 'Accept' based on an array of Accept provided. + +```php +private selectAcceptHeader(array $accept): ?string +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|-----------|-------------| +| `$accept` | **array** | | + +*** + +### isJsonMime + +Detects whether a string contains a valid JSON mime type + +```php +public isJsonMime(string $searchString): bool +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------------|------------|-------------| +| `$searchString` | **string** | | + +*** + +### selectJsonMimeList + +Select all items from a list containing a JSON mime type + +```php +private selectJsonMimeList(array $mimeList): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-------------|-----------|-------------| +| `$mimeList` | **array** | | + +*** + +### getAcceptHeaderWithAdjustedWeight + +Create an Accept header string from the given "Accept" headers array, recalculating all weights + +```php +private getAcceptHeaderWithAdjustedWeight(array $accept, array $headersWithJson): string +``` + +**Parameters:** + +| Parameter | Type | Description | +|--------------------|-----------|-------------| +| `$accept` | **array** | | +| `$headersWithJson` | **array** | | + +*** + +### getHeaderAndWeight + +Given an Accept header, returns an associative array splitting the header and its weight + +```php +private getHeaderAndWeight(string $header): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$header` | **string** | | + +*** + +### adjustWeight + +```php +private adjustWeight(array $headers, float& $currentWeight, bool $hasMoreThan28Headers): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-------------------------|-----------|-------------| +| `$headers` | **array** | | +| `$currentWeight` | **float** | | +| `$hasMoreThan28Headers` | **bool** | | + +*** + +### buildAcceptHeader + +```php +private buildAcceptHeader(string $header, int $weight): string +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$header` | **string** | | +| `$weight` | **int** | | + +*** + +### getNextWeight + +Calculate the next weight, based on the current one. + +```php +public getNextWeight(int $currentWeight, bool $hasMoreThan28Headers): int +``` + +If there are less than 28 "Accept" headers, the weights will be decreased by 1 on its highest significant digit, +using the following formula: + + next weight = current weight - 10 ^ (floor(log(current weight - 1))) + + ( current weight minus ( + 10 raised to the power of ( floor of (log to the base 10 of ( current weight minus 1 ) ) ) ) + ) + +Starting from 1000, this generates the following series: + +1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 + +The resulting quality codes are closer to the average "normal" usage of them (like "q=0.9", "q=0.8" and so on), +but it only works if there is a maximum of 28 "Accept" headers. If we have more than that +(which is extremely unlikely), then we fall back to a 1-by-1 +decrement rule, which will result in quality codes like "q=0.999", "q=0.998" etc. + +**Parameters:** + +| Parameter | Type | Description | +|-------------------------|----------|-------------| +| `$currentWeight` | **int** | | +| `$hasMoreThan28Headers` | **bool** | | + +*** diff --git a/docs/classes/Upsun/Api/Serializer/ApiObjectAttributesMapper.md b/docs/classes/Upsun/Api/Serializer/ApiObjectAttributesMapper.md new file mode 100644 index 00000000..08204b66 --- /dev/null +++ b/docs/classes/Upsun/Api/Serializer/ApiObjectAttributesMapper.md @@ -0,0 +1,46 @@ +# ApiObjectAttributesMapper + +Low level (auto-generated) + +This model class is utilized by the ObjectSerializer for mapping JSON attributes +to their corresponding model properties during serialization/deserialization. + +*** + +* Full name: `\Upsun\Api\Serializer\ApiObjectAttributesMapper` +* This class is marked as **final** and can't be subclassed + +**See Also:** + +* https://docs.upsun.com + +## Properties + +### attributeMap + +```php +private static array $attributeMap +``` + +* This property is **static**. + +*** + +## Methods + +### attributeMap + +return json attribute mapping for a specific Class + +```php +public static attributeMap(string $classname): array +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|--------------|------------|-------------| +| `$classname` | **string** | | + +*** diff --git a/docs/classes/Upsun/Api/Serializer/ApiObjectFormatsMapper.md b/docs/classes/Upsun/Api/Serializer/ApiObjectFormatsMapper.md new file mode 100644 index 00000000..0f9de27f --- /dev/null +++ b/docs/classes/Upsun/Api/Serializer/ApiObjectFormatsMapper.md @@ -0,0 +1,46 @@ +# ApiObjectFormatsMapper + +Low level (auto-generated) + +This model class is utilized by the ObjectSerializer for mapping JSON attribute format +to their corresponding model properties during serialization/deserialization. + +*** + +* Full name: `\Upsun\Api\Serializer\ApiObjectFormatsMapper` +* This class is marked as **final** and can't be subclassed + +**See Also:** + +* https://docs.upsun.com + +## Properties + +### openApiFormats + +```php +protected static $openApiFormats +``` + +* This property is **static**. + +*** + +## Methods + +### openApiFormats + +Array of property to format mappings. Used for (de)serialization + +```php +public static openApiFormats(string $classname): array +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|--------------|------------|-------------| +| `$classname` | **string** | | + +*** diff --git a/docs/classes/Upsun/Api/Serializer/ApiObjectTypesMapper.md b/docs/classes/Upsun/Api/Serializer/ApiObjectTypesMapper.md new file mode 100644 index 00000000..2c9b0ddd --- /dev/null +++ b/docs/classes/Upsun/Api/Serializer/ApiObjectTypesMapper.md @@ -0,0 +1,46 @@ +# ApiObjectTypesMapper + +Low level (auto-generated) + +This model class is utilized by the ObjectSerializer for mapping JSON attribute types +to their corresponding model properties during serialization/deserialization. + +*** + +* Full name: `\Upsun\Api\Serializer\ApiObjectTypesMapper` +* This class is marked as **final** and can't be subclassed + +**See Also:** + +* https://docs.upsun.com + +## Properties + +### openApiTypes + +```php +private static array $openApiTypes +``` + +* This property is **static**. + +*** + +## Methods + +### openApiTypes + +return openApi types mapping for a specific Class + +```php +public static openApiTypes(string $classname): array +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|--------------|------------|-------------| +| `$classname` | **string** | | + +*** diff --git a/docs/classes/Upsun/Api/Serializer/ObjectSerializer.md b/docs/classes/Upsun/Api/Serializer/ObjectSerializer.md new file mode 100644 index 00000000..8fef3af9 --- /dev/null +++ b/docs/classes/Upsun/Api/Serializer/ObjectSerializer.md @@ -0,0 +1,199 @@ +# ObjectSerializer + +ObjectSerializer Class Doc Comment + +*** + +* Full name: `\Upsun\Api\Serializer\ObjectSerializer` + +**See Also:** + +* https://docs.upsun.com + +## Properties + +### dateTimeFormat + +```php +private static string $dateTimeFormat +``` + +* This property is **static**. + +*** + +## Methods + +### sanitizeForSerialization + +Serialize data + +```php +public static sanitizeForSerialization(mixed $data, ?string $type = null, ?string $format = null): float|object|array|bool|int|string|null +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|-------------|-------------| +| `$data` | **mixed** | | +| `$type` | **?string** | | +| `$format` | **?string** | | + +*** + +### sanitizeFilename + +Sanitize filename by removing path. + +```php +public static sanitizeFilename(string $filename): string +``` + +e.g. ../../sun.gif becomes sun.gif + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-------------|------------|-------------| +| `$filename` | **string** | | + +*** + +### toPathValue + +Take value and turn it into a string suitable for inclusion in +the path, by url-encoding. + +```php +public static toPathValue(string $value): string +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-----------------------------------------| +| `$value` | **string** | a string which will be part of the path | + +**Return Value:** + +the serialized object + +*** + +### toString + +Take value and turn it into a string suitable for inclusion in +the parameter. If it's a string, pass through unchanged +If it's a datetime object, format it in ISO8601 +If it's a boolean, convert it to "true" or "false". + +```php +public static toString(float|\DateTime|bool|int|string $value): string +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|-----------------------------------------|-------------| +| `$value` | **float\|\DateTime\|bool\|int\|string** | | + +*** + +### deserializeSimplifiedModel + +Simple deserializer for new models with parameterized constructors + +```php +private static deserializeSimplifiedModel(mixed $data, string $class): mixed +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$data` | **mixed** | | +| `$class` | **string** | | + +**Throws:** + +- [`Exception`](https://www.php.net/manual/en/class.exception.php) + + +*** + +### deserialize + +```php +public static deserialize(mixed $data, string $class, mixed $httpHeaders = null): mixed +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|----------------|------------|-------------| +| `$data` | **mixed** | | +| `$class` | **string** | | +| `$httpHeaders` | **mixed** | | + +**Throws:** + +- [`Exception`](https://www.php.net/manual/en/class.exception.php) + + +*** + +### preprocessArrayProperties + +Preprocess array properties to deserialize models + +```php +private static preprocessArrayProperties(array $data, string $class): array +``` + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$data` | **array** | | +| `$class` | **string** | | + +**Throws:** + +- [`Exception`](https://www.php.net/manual/en/class.exception.php) + + +*** + +### buildQuery + +Build a query string from an array of key value pairs. + +```php +public static buildQuery(array $params, mixed $encoding = PHP_QUERY_RFC3986): string +``` + +This function can use the return value of `parse()` to build a query +string. This function does not modify the provided keys when an array is +encountered (like `http_build_query()` would). + +The function is copied from +https://github.com/guzzle/psr7/blob/a243f80a1ca7fe8ceed4deee17f12c1930efe662/src/Query.php#L59-L112 +with a modification which is described in https://github.com/guzzle/psr7/pull/603 + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-------------|-----------|-------------| +| `$params` | **array** | | +| `$encoding` | **mixed** | | + +*** diff --git a/docs/classes/Upsun/DebugPlugin.md b/docs/classes/Upsun/DebugPlugin.md new file mode 100644 index 00000000..105a3b2f --- /dev/null +++ b/docs/classes/Upsun/DebugPlugin.md @@ -0,0 +1,87 @@ +# DebugPlugin + +DebugPlugin Class Doc + +*** + +* Full name: `\Upsun\DebugPlugin` +* This class implements: + `Plugin` + +**See Also:** + +* https://docs.upsun.com + +## Properties + +### output + +```php +private resource $output +``` + +*** + +## Methods + +### __construct + +DebuggingPlugin constructor. + +```php +public __construct(resource $output): mixed +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|--------------|-------------| +| `$output` | **resource** | | + +*** + +### handleRequest + +```php +public handleRequest(\Psr\Http\Message\RequestInterface $request, callable $next, callable $first): \Http\Promise\Promise +``` + +**Parameters:** + +| Parameter | Type | Description | +|------------|----------------------------------------|-------------| +| `$request` | **\Psr\Http\Message\RequestInterface** | | +| `$next` | **callable** | | +| `$first` | **callable** | | + +*** + +### logSuccess + +```php +private logSuccess(\Psr\Http\Message\RequestInterface $request, \Psr\Http\Message\ResponseInterface $response): void +``` + +**Parameters:** + +| Parameter | Type | Description | +|-------------|-----------------------------------------|-------------| +| `$request` | **\Psr\Http\Message\RequestInterface** | | +| `$response` | **\Psr\Http\Message\ResponseInterface** | | + +*** + +### logError + +```php +private logError(\Psr\Http\Message\RequestInterface $request, \Psr\Http\Client\ClientExceptionInterface $exception): void +``` + +**Parameters:** + +| Parameter | Type | Description | +|--------------|-----------------------------------------------|-------------| +| `$request` | **\Psr\Http\Message\RequestInterface** | | +| `$exception` | **\Psr\Http\Client\ClientExceptionInterface** | | + +*** diff --git a/docs/classes/Upsun/FormDataProcessor.md b/docs/classes/Upsun/FormDataProcessor.md new file mode 100644 index 00000000..a2019ee4 --- /dev/null +++ b/docs/classes/Upsun/FormDataProcessor.md @@ -0,0 +1,136 @@ +# FormDataProcessor + +FormDataProcessor Class Doc Comment + +*** + +* Full name: `\Upsun\FormDataProcessor` + +**See Also:** + +* https://openapi-generator.tech + +## Properties + +### has_file + +Tags whether payload passed to ::prepare() contains one or more +SplFileObject or stream values. + +```php +public bool $has_file +``` + +*** + +## Methods + +### prepare + +Take value and turn it into an array suitable for inclusion in +the http body (form parameter). If it's a string, pass through unchanged +If it's a datetime object, format it in ISO8601 + +```php +public prepare((string|bool|array|\DateTime|\ArrayAccess|\SplFileObject)[] $values): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|----------------------------------------------------------------------|---------------------------------| +| `$values` | **(string\|bool\|array\|\DateTime\|\ArrayAccess\|\SplFileObject)[]** | the value of the form parameter | + +**Return Value:** + +[key => value] of formdata + +*** + +### flatten + +Flattens a multi-level array of data and generates a single-level array +compatible with formdata - a single-level array where the keys use bracket +notation to signify nested data. + +```php +public static flatten(array $source, string $start = ''): array +``` + +credit: https://github.com/FranBar1966/FlatPHP + +* This method is **static**. +**Parameters:** + +| Parameter | Type | Description | +|-----------|------------|-------------| +| `$source` | **array** | | +| `$start` | **string** | | + +*** + +### makeFormSafe + +formdata must be limited to scalars or arrays of scalar values, +or a resource for a file upload. Here we iterate through all available +data and identify how to handle each scenario + +```php +protected makeFormSafe(mixed $value): mixed +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|-----------|-------------| +| `$value` | **mixed** | | + +*** + +### processModel + +We are able to handle nested ModelInterface. We do not simply call +json_decode(json_encode()) because any given model may have binary data +or other data that cannot be serialized to a JSON string + +```php +protected processModel(\Upsun\Model\ModelInterface $model): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|---------------------------------|-------------| +| `$model` | **\Upsun\Model\ModelInterface** | | + +*** + +### processFiles + +Handle file data + +```php +protected processFiles(array $files): array +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|-----------|-------------| +| `$files` | **array** | | + +*** + +### tryFopen + +```php +private tryFopen(\SplFileObject $file): mixed +``` + +**Parameters:** + +| Parameter | Type | Description | +|-----------|--------------------|-------------| +| `$file` | **\SplFileObject** | | + +*** diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 00000000..1b7f477c --- /dev/null +++ b/docs/index.md @@ -0,0 +1,788 @@ +# Upsun SDK PHP Doc + +--- + +## API Endpoints + +All URIs are relative to *https://api.upsun.com* + +| Class | Method | HTTP request | Description | Upsun API Doc | +| ------------ | ------------- | ------------- | ------------- | ------------- | +| **AddOnsApi** | [**getOrgAddons**](docs/Api/AddOnsApi.md#getorgaddons) | **GET** /organizations/{organization_id}/addons | Get add-ons | https://docs.upsun.com/api/#tag/Add-ons/operation/get-org-addons | +| **AddOnsApi** | [**updateOrgAddons**](docs/Api/AddOnsApi.md#updateorgaddons) | **PATCH** /organizations/{organization_id}/addons | Update organization add-ons | https://docs.upsun.com/api/#tag/Add-ons/operation/update-org-addons | +| **AlertsApi** | [**getUsageAlerts**](docs/Api/AlertsApi.md#getusagealerts) | **GET** /alerts/subscriptions/{subscriptionId}/usage | Get usage alerts for a subscription | https://docs.upsun.com/api/#tag/Alerts/operation/get-usage-alerts | +| **AlertsApi** | [**updateUsageAlerts**](docs/Api/AlertsApi.md#updateusagealerts) | **PATCH** /alerts/subscriptions/{subscriptionId}/usage | Update usage alerts. | https://docs.upsun.com/api/#tag/Alerts/operation/update-usage-alerts | +| **ApiTokensApi** | [**createApiToken**](docs/Api/ApiTokensApi.md#createapitoken) | **POST** /users/{user_id}/api-tokens | Create an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/create-api-token | +| **ApiTokensApi** | [**deleteApiToken**](docs/Api/ApiTokensApi.md#deleteapitoken) | **DELETE** /users/{user_id}/api-tokens/{token_id} | Delete an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/delete-api-token | +| **ApiTokensApi** | [**getApiToken**](docs/Api/ApiTokensApi.md#getapitoken) | **GET** /users/{user_id}/api-tokens/{token_id} | Get an API token | https://docs.upsun.com/api/#tag/Api-Tokens/operation/get-api-token | +| **ApiTokensApi** | [**listApiTokens**](docs/Api/ApiTokensApi.md#listapitokens) | **GET** /users/{user_id}/api-tokens | List a user's API tokens | https://docs.upsun.com/api/#tag/Api-Tokens/operation/list-api-tokens | +| **AutoscalingApi** | [**getAutoscalerSettings**](docs/Api/AutoscalingApi.md#getautoscalersettings) | **GET** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/get-autoscaler-settings | +| **AutoscalingApi** | [**patchAutoscalerSettings**](docs/Api/AutoscalingApi.md#patchautoscalersettings) | **PATCH** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/patch-autoscaler-settings | +| **AutoscalingApi** | [**postAutoscalerSettings**](docs/Api/AutoscalingApi.md#postautoscalersettings) | **POST** /projects/{projectId}/environments/{environmentId}/autoscaling/settings | | https://docs.upsun.com/api/#tag/Autoscaling/operation/post-autoscaler-settings | +| **CertManagementApi** | [**createProjectsCertificates**](docs/Api/CertManagementApi.md#createprojectscertificates) | **POST** /projects/{projectId}/certificates | Add an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/create-projects-certificates | +| **CertManagementApi** | [**deleteProjectsCertificates**](docs/Api/CertManagementApi.md#deleteprojectscertificates) | **DELETE** /projects/{projectId}/certificates/{certificateId} | Delete an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/delete-projects-certificates | +| **CertManagementApi** | [**getProjectsCertificates**](docs/Api/CertManagementApi.md#getprojectscertificates) | **GET** /projects/{projectId}/certificates/{certificateId} | Get an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/get-projects-certificates | +| **CertManagementApi** | [**listProjectsCertificates**](docs/Api/CertManagementApi.md#listprojectscertificates) | **GET** /projects/{projectId}/certificates | Get list of SSL certificates | https://docs.upsun.com/api/#tag/Cert-Management/operation/list-projects-certificates | +| **CertManagementApi** | [**updateProjectsCertificates**](docs/Api/CertManagementApi.md#updateprojectscertificates) | **PATCH** /projects/{projectId}/certificates/{certificateId} | Update an SSL certificate | https://docs.upsun.com/api/#tag/Cert-Management/operation/update-projects-certificates | +| **CertificateProvisionerApi** | [**getProjectsProvisioners**](docs/Api/CertificateProvisionerApi.md#getprojectsprovisioners) | **GET** /projects/{projectId}/provisioners/{certificateProvisionerDocumentId} | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/get-projects-provisioners | +| **CertificateProvisionerApi** | [**listProjectsProvisioners**](docs/Api/CertificateProvisionerApi.md#listprojectsprovisioners) | **GET** /projects/{projectId}/provisioners | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/list-projects-provisioners | +| **CertificateProvisionerApi** | [**updateProjectsProvisioners**](docs/Api/CertificateProvisionerApi.md#updateprojectsprovisioners) | **PATCH** /projects/{projectId}/provisioners/{certificateProvisionerDocumentId} | | https://docs.upsun.com/api/#tag/CertificateProvisioner/operation/update-projects-provisioners | +| **ConnectionsApi** | [**deleteLoginConnection**](docs/Api/ConnectionsApi.md#deleteloginconnection) | **DELETE** /users/{user_id}/connections/{provider} | Delete a federated login connection | https://docs.upsun.com/api/#tag/Connections/operation/delete-login-connection | +| **ConnectionsApi** | [**getLoginConnection**](docs/Api/ConnectionsApi.md#getloginconnection) | **GET** /users/{user_id}/connections/{provider} | Get a federated login connection | https://docs.upsun.com/api/#tag/Connections/operation/get-login-connection | +| **ConnectionsApi** | [**listLoginConnections**](docs/Api/ConnectionsApi.md#listloginconnections) | **GET** /users/{user_id}/connections | List federated login connections | https://docs.upsun.com/api/#tag/Connections/operation/list-login-connections | +| **DefaultApi** | [**listTickets**](docs/Api/DefaultApi.md#listtickets) | **GET** /tickets | List support tickets | https://docs.upsun.com/api/#tag//operation/list-tickets | +| **DefaultApi** | [**queryOrganiationCarbon**](docs/Api/DefaultApi.md#queryorganiationcarbon) | **GET** /organizations/{organization_id}/metrics/carbon | Query project carbon emissions metrics for an entire organization | https://docs.upsun.com/api/#tag//operation/query-organiation-carbon | +| **DeploymentApi** | [**getProjectsEnvironmentsDeployments**](docs/Api/DeploymentApi.md#getprojectsenvironmentsdeployments) | **GET** /projects/{projectId}/environments/{environmentId}/deployments/{deploymentId} | Get a single environment deployment | https://docs.upsun.com/api/#tag/Deployment/operation/get-projects-environments-deployments | +| **DeploymentApi** | [**listProjectsEnvironmentsDeployments**](docs/Api/DeploymentApi.md#listprojectsenvironmentsdeployments) | **GET** /projects/{projectId}/environments/{environmentId}/deployments | Get an environment's deployment information | https://docs.upsun.com/api/#tag/Deployment/operation/list-projects-environments-deployments | +| **DeploymentApi** | [**updateProjectsEnvironmentsDeploymentsNext**](docs/Api/DeploymentApi.md#updateprojectsenvironmentsdeploymentsnext) | **PATCH** /projects/{projectId}/environments/{environmentId}/deployments/next | Update the next deployment | https://docs.upsun.com/api/#tag/Deployment/operation/update-projects-environments-deployments-next | +| **DeploymentTargetApi** | [**createProjectsDeployments**](docs/Api/DeploymentTargetApi.md#createprojectsdeployments) | **POST** /projects/{projectId}/deployments | Create a project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/create-projects-deployments | +| **DeploymentTargetApi** | [**deleteProjectsDeployments**](docs/Api/DeploymentTargetApi.md#deleteprojectsdeployments) | **DELETE** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Delete a single project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/delete-projects-deployments | +| **DeploymentTargetApi** | [**getProjectsDeployments**](docs/Api/DeploymentTargetApi.md#getprojectsdeployments) | **GET** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Get a single project deployment target | https://docs.upsun.com/api/#tag/Deployment-Target/operation/get-projects-deployments | +| **DeploymentTargetApi** | [**listProjectsDeployments**](docs/Api/DeploymentTargetApi.md#listprojectsdeployments) | **GET** /projects/{projectId}/deployments | Get project deployment target info | https://docs.upsun.com/api/#tag/Deployment-Target/operation/list-projects-deployments | +| **DeploymentTargetApi** | [**updateProjectsDeployments**](docs/Api/DeploymentTargetApi.md#updateprojectsdeployments) | **PATCH** /projects/{projectId}/deployments/{deploymentTargetConfigurationId} | Update a project deployment | https://docs.upsun.com/api/#tag/Deployment-Target/operation/update-projects-deployments | +| **DiscountsApi** | [**getDiscount**](docs/Api/DiscountsApi.md#getdiscount) | **GET** /discounts/{id} | Get an organization discount | https://docs.upsun.com/api/#tag/Discounts/operation/get-discount | +| **DiscountsApi** | [**getTypeAllowance**](docs/Api/DiscountsApi.md#gettypeallowance) | **GET** /discounts/types/allowance | Get the value of the First Project Incentive discount | https://docs.upsun.com/api/#tag/Discounts/operation/get-type-allowance | +| **DiscountsApi** | [**listOrgDiscounts**](docs/Api/DiscountsApi.md#listorgdiscounts) | **GET** /organizations/{organization_id}/discounts | List organization discounts | https://docs.upsun.com/api/#tag/Discounts/operation/list-org-discounts | +| **DomainManagementApi** | [**createProjectsDomains**](docs/Api/DomainManagementApi.md#createprojectsdomains) | **POST** /projects/{projectId}/domains | Add a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/create-projects-domains | +| **DomainManagementApi** | [**createProjectsEnvironmentsDomains**](docs/Api/DomainManagementApi.md#createprojectsenvironmentsdomains) | **POST** /projects/{projectId}/environments/{environmentId}/domains | Add an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/create-projects-environments-domains | +| **DomainManagementApi** | [**deleteProjectsDomains**](docs/Api/DomainManagementApi.md#deleteprojectsdomains) | **DELETE** /projects/{projectId}/domains/{domainId} | Delete a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/delete-projects-domains | +| **DomainManagementApi** | [**deleteProjectsEnvironmentsDomains**](docs/Api/DomainManagementApi.md#deleteprojectsenvironmentsdomains) | **DELETE** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Delete an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/delete-projects-environments-domains | +| **DomainManagementApi** | [**getProjectsDomains**](docs/Api/DomainManagementApi.md#getprojectsdomains) | **GET** /projects/{projectId}/domains/{domainId} | Get a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/get-projects-domains | +| **DomainManagementApi** | [**getProjectsEnvironmentsDomains**](docs/Api/DomainManagementApi.md#getprojectsenvironmentsdomains) | **GET** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Get an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/get-projects-environments-domains | +| **DomainManagementApi** | [**listProjectsDomains**](docs/Api/DomainManagementApi.md#listprojectsdomains) | **GET** /projects/{projectId}/domains | Get list of project domains | https://docs.upsun.com/api/#tag/Domain-Management/operation/list-projects-domains | +| **DomainManagementApi** | [**listProjectsEnvironmentsDomains**](docs/Api/DomainManagementApi.md#listprojectsenvironmentsdomains) | **GET** /projects/{projectId}/environments/{environmentId}/domains | Get a list of environment domains | https://docs.upsun.com/api/#tag/Domain-Management/operation/list-projects-environments-domains | +| **DomainManagementApi** | [**updateProjectsDomains**](docs/Api/DomainManagementApi.md#updateprojectsdomains) | **PATCH** /projects/{projectId}/domains/{domainId} | Update a project domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/update-projects-domains | +| **DomainManagementApi** | [**updateProjectsEnvironmentsDomains**](docs/Api/DomainManagementApi.md#updateprojectsenvironmentsdomains) | **PATCH** /projects/{projectId}/environments/{environmentId}/domains/{domainId} | Update an environment domain | https://docs.upsun.com/api/#tag/Domain-Management/operation/update-projects-environments-domains | +| **EnvironmentApi** | [**activateEnvironment**](docs/Api/EnvironmentApi.md#activateenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/activate | Activate an environment | https://docs.upsun.com/api/#tag/Environment/operation/activate-environment | +| **EnvironmentApi** | [**branchEnvironment**](docs/Api/EnvironmentApi.md#branchenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/branch | Branch an environment | https://docs.upsun.com/api/#tag/Environment/operation/branch-environment | +| **EnvironmentApi** | [**createProjectsEnvironmentsVersions**](docs/Api/EnvironmentApi.md#createprojectsenvironmentsversions) | **POST** /projects/{projectId}/environments/{environmentId}/versions | Create versions associated with the environment | https://docs.upsun.com/api/#tag/Environment/operation/create-projects-environments-versions | +| **EnvironmentApi** | [**deactivateEnvironment**](docs/Api/EnvironmentApi.md#deactivateenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/deactivate | Deactivate an environment | https://docs.upsun.com/api/#tag/Environment/operation/deactivate-environment | +| **EnvironmentApi** | [**deleteEnvironment**](docs/Api/EnvironmentApi.md#deleteenvironment) | **DELETE** /projects/{projectId}/environments/{environmentId} | Delete an environment | https://docs.upsun.com/api/#tag/Environment/operation/delete-environment | +| **EnvironmentApi** | [**deleteProjectsEnvironmentsVersions**](docs/Api/EnvironmentApi.md#deleteprojectsenvironmentsversions) | **DELETE** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | Delete the version | https://docs.upsun.com/api/#tag/Environment/operation/delete-projects-environments-versions | +| **EnvironmentApi** | [**deployEnvironment**](docs/Api/EnvironmentApi.md#deployenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/deploy | Deploy an environment | https://docs.upsun.com/api/#tag/Environment/operation/deploy-environment | +| **EnvironmentApi** | [**getEnvironment**](docs/Api/EnvironmentApi.md#getenvironment) | **GET** /projects/{projectId}/environments/{environmentId} | Get an environment | https://docs.upsun.com/api/#tag/Environment/operation/get-environment | +| **EnvironmentApi** | [**getProjectsEnvironmentsVersions**](docs/Api/EnvironmentApi.md#getprojectsenvironmentsversions) | **GET** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | List the version | https://docs.upsun.com/api/#tag/Environment/operation/get-projects-environments-versions | +| **EnvironmentApi** | [**initializeEnvironment**](docs/Api/EnvironmentApi.md#initializeenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/initialize | Initialize a new environment | https://docs.upsun.com/api/#tag/Environment/operation/initialize-environment | +| **EnvironmentApi** | [**listProjectsEnvironments**](docs/Api/EnvironmentApi.md#listprojectsenvironments) | **GET** /projects/{projectId}/environments | Get list of project environments | https://docs.upsun.com/api/#tag/Environment/operation/list-projects-environments | +| **EnvironmentApi** | [**listProjectsEnvironmentsVersions**](docs/Api/EnvironmentApi.md#listprojectsenvironmentsversions) | **GET** /projects/{projectId}/environments/{environmentId}/versions | List versions associated with the environment | https://docs.upsun.com/api/#tag/Environment/operation/list-projects-environments-versions | +| **EnvironmentApi** | [**mergeEnvironment**](docs/Api/EnvironmentApi.md#mergeenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/merge | Merge an environment | https://docs.upsun.com/api/#tag/Environment/operation/merge-environment | +| **EnvironmentApi** | [**pauseEnvironment**](docs/Api/EnvironmentApi.md#pauseenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/pause | Pause an environment | https://docs.upsun.com/api/#tag/Environment/operation/pause-environment | +| **EnvironmentApi** | [**redeployEnvironment**](docs/Api/EnvironmentApi.md#redeployenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/redeploy | Redeploy an environment | https://docs.upsun.com/api/#tag/Environment/operation/redeploy-environment | +| **EnvironmentApi** | [**resumeEnvironment**](docs/Api/EnvironmentApi.md#resumeenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/resume | Resume a paused environment | https://docs.upsun.com/api/#tag/Environment/operation/resume-environment | +| **EnvironmentApi** | [**synchronizeEnvironment**](docs/Api/EnvironmentApi.md#synchronizeenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/synchronize | Synchronize a child environment with its parent | https://docs.upsun.com/api/#tag/Environment/operation/synchronize-environment | +| **EnvironmentApi** | [**updateEnvironment**](docs/Api/EnvironmentApi.md#updateenvironment) | **PATCH** /projects/{projectId}/environments/{environmentId} | Update an environment | https://docs.upsun.com/api/#tag/Environment/operation/update-environment | +| **EnvironmentApi** | [**updateProjectsEnvironmentsVersions**](docs/Api/EnvironmentApi.md#updateprojectsenvironmentsversions) | **PATCH** /projects/{projectId}/environments/{environmentId}/versions/{versionId} | Update the version | https://docs.upsun.com/api/#tag/Environment/operation/update-projects-environments-versions | +| **EnvironmentActivityApi** | [**actionProjectsEnvironmentsActivitiesCancel**](docs/Api/EnvironmentActivityApi.md#actionprojectsenvironmentsactivitiescancel) | **POST** /projects/{projectId}/environments/{environmentId}/activities/{activityId}/cancel | Cancel an environment activity | https://docs.upsun.com/api/#tag/Environment-Activity/operation/action-projects-environments-activities-cancel | +| **EnvironmentActivityApi** | [**getProjectsEnvironmentsActivities**](docs/Api/EnvironmentActivityApi.md#getprojectsenvironmentsactivities) | **GET** /projects/{projectId}/environments/{environmentId}/activities/{activityId} | Get an environment activity log entry | https://docs.upsun.com/api/#tag/Environment-Activity/operation/get-projects-environments-activities | +| **EnvironmentActivityApi** | [**listProjectsEnvironmentsActivities**](docs/Api/EnvironmentActivityApi.md#listprojectsenvironmentsactivities) | **GET** /projects/{projectId}/environments/{environmentId}/activities | Get environment activity log | https://docs.upsun.com/api/#tag/Environment-Activity/operation/list-projects-environments-activities | +| **EnvironmentBackupsApi** | [**backupEnvironment**](docs/Api/EnvironmentBackupsApi.md#backupenvironment) | **POST** /projects/{projectId}/environments/{environmentId}/backup | Create backup of environment | https://docs.upsun.com/api/#tag/Environment-Backups/operation/backup-environment | +| **EnvironmentBackupsApi** | [**deleteProjectsEnvironmentsBackups**](docs/Api/EnvironmentBackupsApi.md#deleteprojectsenvironmentsbackups) | **DELETE** /projects/{projectId}/environments/{environmentId}/backups/{backupId} | Delete an environment backup | https://docs.upsun.com/api/#tag/Environment-Backups/operation/delete-projects-environments-backups | +| **EnvironmentBackupsApi** | [**getProjectsEnvironmentsBackups**](docs/Api/EnvironmentBackupsApi.md#getprojectsenvironmentsbackups) | **GET** /projects/{projectId}/environments/{environmentId}/backups/{backupId} | Get an environment backup's info | https://docs.upsun.com/api/#tag/Environment-Backups/operation/get-projects-environments-backups | +| **EnvironmentBackupsApi** | [**listProjectsEnvironmentsBackups**](docs/Api/EnvironmentBackupsApi.md#listprojectsenvironmentsbackups) | **GET** /projects/{projectId}/environments/{environmentId}/backups | Get an environment's backup list | https://docs.upsun.com/api/#tag/Environment-Backups/operation/list-projects-environments-backups | +| **EnvironmentBackupsApi** | [**restoreBackup**](docs/Api/EnvironmentBackupsApi.md#restorebackup) | **POST** /projects/{projectId}/environments/{environmentId}/backups/{backupId}/restore | Restore an environment snapshot | https://docs.upsun.com/api/#tag/Environment-Backups/operation/restore-backup | +| **EnvironmentTypeApi** | [**getEnvironmentType**](docs/Api/EnvironmentTypeApi.md#getenvironmenttype) | **GET** /projects/{projectId}/environment-types/{environmentTypeId} | Get environment type links | https://docs.upsun.com/api/#tag/Environment-Type/operation/get-environment-type | +| **EnvironmentTypeApi** | [**listProjectsEnvironmentTypes**](docs/Api/EnvironmentTypeApi.md#listprojectsenvironmenttypes) | **GET** /projects/{projectId}/environment-types | Get environment types | https://docs.upsun.com/api/#tag/Environment-Type/operation/list-projects-environment-types | +| **EnvironmentVariablesApi** | [**createProjectsEnvironmentsVariables**](docs/Api/EnvironmentVariablesApi.md#createprojectsenvironmentsvariables) | **POST** /projects/{projectId}/environments/{environmentId}/variables | Add an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/create-projects-environments-variables | +| **EnvironmentVariablesApi** | [**deleteProjectsEnvironmentsVariables**](docs/Api/EnvironmentVariablesApi.md#deleteprojectsenvironmentsvariables) | **DELETE** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Delete an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/delete-projects-environments-variables | +| **EnvironmentVariablesApi** | [**getProjectsEnvironmentsVariables**](docs/Api/EnvironmentVariablesApi.md#getprojectsenvironmentsvariables) | **GET** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Get an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/get-projects-environments-variables | +| **EnvironmentVariablesApi** | [**listProjectsEnvironmentsVariables**](docs/Api/EnvironmentVariablesApi.md#listprojectsenvironmentsvariables) | **GET** /projects/{projectId}/environments/{environmentId}/variables | Get list of environment variables | https://docs.upsun.com/api/#tag/Environment-Variables/operation/list-projects-environments-variables | +| **EnvironmentVariablesApi** | [**updateProjectsEnvironmentsVariables**](docs/Api/EnvironmentVariablesApi.md#updateprojectsenvironmentsvariables) | **PATCH** /projects/{projectId}/environments/{environmentId}/variables/{variableId} | Update an environment variable | https://docs.upsun.com/api/#tag/Environment-Variables/operation/update-projects-environments-variables | +| **GrantsApi** | [**listUserExtendedAccess**](docs/Api/GrantsApi.md#listuserextendedaccess) | **GET** /users/{user_id}/extended-access | List extended access of a user | https://docs.upsun.com/api/#tag/Grants/operation/list-user-extended-access | +| **InvoicesApi** | [**getOrgInvoice**](docs/Api/InvoicesApi.md#getorginvoice) | **GET** /organizations/{organization_id}/invoices/{invoice_id} | Get invoice | https://docs.upsun.com/api/#tag/Invoices/operation/get-org-invoice | +| **InvoicesApi** | [**listOrgInvoices**](docs/Api/InvoicesApi.md#listorginvoices) | **GET** /organizations/{organization_id}/invoices | List invoices | https://docs.upsun.com/api/#tag/Invoices/operation/list-org-invoices | +| **MfaApi** | [**confirmTotpEnrollment**](docs/Api/MfaApi.md#confirmtotpenrollment) | **POST** /users/{user_id}/totp | Confirm TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/confirm-totp-enrollment | +| **MfaApi** | [**disableOrgMfaEnforcement**](docs/Api/MfaApi.md#disableorgmfaenforcement) | **POST** /organizations/{organization_id}/mfa-enforcement/disable | Disable organization MFA enforcement | https://docs.upsun.com/api/#tag/Mfa/operation/disable-org-mfa-enforcement | +| **MfaApi** | [**enableOrgMfaEnforcement**](docs/Api/MfaApi.md#enableorgmfaenforcement) | **POST** /organizations/{organization_id}/mfa-enforcement/enable | Enable organization MFA enforcement | https://docs.upsun.com/api/#tag/Mfa/operation/enable-org-mfa-enforcement | +| **MfaApi** | [**getOrgMfaEnforcement**](docs/Api/MfaApi.md#getorgmfaenforcement) | **GET** /organizations/{organization_id}/mfa-enforcement | Get organization MFA settings | https://docs.upsun.com/api/#tag/Mfa/operation/get-org-mfa-enforcement | +| **MfaApi** | [**getTotpEnrollment**](docs/Api/MfaApi.md#gettotpenrollment) | **GET** /users/{user_id}/totp | Get information about TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/get-totp-enrollment | +| **MfaApi** | [**recreateRecoveryCodes**](docs/Api/MfaApi.md#recreaterecoverycodes) | **POST** /users/{user_id}/codes | Re-create recovery codes | https://docs.upsun.com/api/#tag/Mfa/operation/recreate-recovery-codes | +| **MfaApi** | [**sendOrgMfaReminders**](docs/Api/MfaApi.md#sendorgmfareminders) | **POST** /organizations/{organization_id}/mfa/remind | Send MFA reminders to organization members | https://docs.upsun.com/api/#tag/Mfa/operation/send-org-mfa-reminders | +| **MfaApi** | [**withdrawTotpEnrollment**](docs/Api/MfaApi.md#withdrawtotpenrollment) | **DELETE** /users/{user_id}/totp | Withdraw TOTP enrollment | https://docs.upsun.com/api/#tag/Mfa/operation/withdraw-totp-enrollment | +| **OrdersApi** | [**createAuthorizationCredentials**](docs/Api/OrdersApi.md#createauthorizationcredentials) | **POST** /organizations/{organization_id}/orders/{order_id}/authorize | Create confirmation credentials for for 3D-Secure | https://docs.upsun.com/api/#tag/Orders/operation/create-authorization-credentials | +| **OrdersApi** | [**downloadInvoice**](docs/Api/OrdersApi.md#downloadinvoice) | **GET** /orders/download | Download an invoice. | https://docs.upsun.com/api/#tag/Orders/operation/download-invoice | +| **OrdersApi** | [**getOrgOrder**](docs/Api/OrdersApi.md#getorgorder) | **GET** /organizations/{organization_id}/orders/{order_id} | Get order | https://docs.upsun.com/api/#tag/Orders/operation/get-org-order | +| **OrdersApi** | [**listOrgOrders**](docs/Api/OrdersApi.md#listorgorders) | **GET** /organizations/{organization_id}/orders | List orders | https://docs.upsun.com/api/#tag/Orders/operation/list-org-orders | +| **OrganizationInvitationsApi** | [**cancelOrgInvite**](docs/Api/OrganizationInvitationsApi.md#cancelorginvite) | **DELETE** /organizations/{organization_id}/invitations/{invitation_id} | Cancel a pending invitation to an organization | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/cancel-org-invite | +| **OrganizationInvitationsApi** | [**createOrgInvite**](docs/Api/OrganizationInvitationsApi.md#createorginvite) | **POST** /organizations/{organization_id}/invitations | Invite user to an organization by email | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/create-org-invite | +| **OrganizationInvitationsApi** | [**listOrgInvites**](docs/Api/OrganizationInvitationsApi.md#listorginvites) | **GET** /organizations/{organization_id}/invitations | List invitations to an organization | https://docs.upsun.com/api/#tag/Organization-Invitations/operation/list-org-invites | +| **OrganizationManagementApi** | [**estimateOrg**](docs/Api/OrganizationManagementApi.md#estimateorg) | **GET** /organizations/{organization_id}/estimate | Estimate total spend | https://docs.upsun.com/api/#tag/Organization-Management/operation/estimate-org | +| **OrganizationManagementApi** | [**getOrgBillingAlertConfig**](docs/Api/OrganizationManagementApi.md#getorgbillingalertconfig) | **GET** /organizations/{organization_id}/alerts/billing | Get billing alert configuration | https://docs.upsun.com/api/#tag/Organization-Management/operation/get-org-billing-alert-config | +| **OrganizationManagementApi** | [**getOrgPrepaymentInfo**](docs/Api/OrganizationManagementApi.md#getorgprepaymentinfo) | **GET** /organizations/{organization_id}/prepayment | Get organization prepayment information | https://docs.upsun.com/api/#tag/Organization-Management/operation/get-org-prepayment-info | +| **OrganizationManagementApi** | [**listOrgPrepaymentTransactions**](docs/Api/OrganizationManagementApi.md#listorgprepaymenttransactions) | **GET** /organizations/{organization_id}/prepayment/transactions | List organization prepayment transactions | https://docs.upsun.com/api/#tag/Organization-Management/operation/list-org-prepayment-transactions | +| **OrganizationManagementApi** | [**updateOrgBillingAlertConfig**](docs/Api/OrganizationManagementApi.md#updateorgbillingalertconfig) | **PATCH** /organizations/{organization_id}/alerts/billing | Update billing alert configuration | https://docs.upsun.com/api/#tag/Organization-Management/operation/update-org-billing-alert-config | +| **OrganizationMembersApi** | [**createOrgMember**](docs/Api/OrganizationMembersApi.md#createorgmember) | **POST** /organizations/{organization_id}/members | Create organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/create-org-member | +| **OrganizationMembersApi** | [**deleteOrgMember**](docs/Api/OrganizationMembersApi.md#deleteorgmember) | **DELETE** /organizations/{organization_id}/members/{user_id} | Delete organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/delete-org-member | +| **OrganizationMembersApi** | [**getOrgMember**](docs/Api/OrganizationMembersApi.md#getorgmember) | **GET** /organizations/{organization_id}/members/{user_id} | Get organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/get-org-member | +| **OrganizationMembersApi** | [**listOrgMembers**](docs/Api/OrganizationMembersApi.md#listorgmembers) | **GET** /organizations/{organization_id}/members | List organization members | https://docs.upsun.com/api/#tag/Organization-Members/operation/list-org-members | +| **OrganizationMembersApi** | [**updateOrgMember**](docs/Api/OrganizationMembersApi.md#updateorgmember) | **PATCH** /organizations/{organization_id}/members/{user_id} | Update organization member | https://docs.upsun.com/api/#tag/Organization-Members/operation/update-org-member | +| **OrganizationProjectsApi** | [**createOrgProject**](docs/Api/OrganizationProjectsApi.md#createorgproject) | **POST** /organizations/{organization_id}/projects | Create project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/create-org-project | +| **OrganizationProjectsApi** | [**deleteOrgProject**](docs/Api/OrganizationProjectsApi.md#deleteorgproject) | **DELETE** /organizations/{organization_id}/projects/{project_id} | Delete project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/delete-org-project | +| **OrganizationProjectsApi** | [**getOrgProject**](docs/Api/OrganizationProjectsApi.md#getorgproject) | **GET** /organizations/{organization_id}/projects/{project_id} | Get project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/get-org-project | +| **OrganizationProjectsApi** | [**listOrgProjects**](docs/Api/OrganizationProjectsApi.md#listorgprojects) | **GET** /organizations/{organization_id}/projects | List projects | https://docs.upsun.com/api/#tag/Organization-Projects/operation/list-org-projects | +| **OrganizationProjectsApi** | [**queryProjectCarbon**](docs/Api/OrganizationProjectsApi.md#queryprojectcarbon) | **GET** /organizations/{organization_id}/projects/{project_id}/metrics/carbon | Query project carbon emissions metrics | https://docs.upsun.com/api/#tag/Organization-Projects/operation/query-project-carbon | +| **OrganizationProjectsApi** | [**updateOrgProject**](docs/Api/OrganizationProjectsApi.md#updateorgproject) | **PATCH** /organizations/{organization_id}/projects/{project_id} | Update project | https://docs.upsun.com/api/#tag/Organization-Projects/operation/update-org-project | +| **OrganizationsApi** | [**createOrg**](docs/Api/OrganizationsApi.md#createorg) | **POST** /organizations | Create organization | https://docs.upsun.com/api/#tag/Organizations/operation/create-org | +| **OrganizationsApi** | [**deleteOrg**](docs/Api/OrganizationsApi.md#deleteorg) | **DELETE** /organizations/{organization_id} | Delete organization | https://docs.upsun.com/api/#tag/Organizations/operation/delete-org | +| **OrganizationsApi** | [**getOrg**](docs/Api/OrganizationsApi.md#getorg) | **GET** /organizations/{organization_id} | Get organization | https://docs.upsun.com/api/#tag/Organizations/operation/get-org | +| **OrganizationsApi** | [**listOrgs**](docs/Api/OrganizationsApi.md#listorgs) | **GET** /organizations | List organizations | https://docs.upsun.com/api/#tag/Organizations/operation/list-orgs | +| **OrganizationsApi** | [**listUserOrgs**](docs/Api/OrganizationsApi.md#listuserorgs) | **GET** /users/{user_id}/organizations | User organizations | https://docs.upsun.com/api/#tag/Organizations/operation/list-user-orgs | +| **OrganizationsApi** | [**updateOrg**](docs/Api/OrganizationsApi.md#updateorg) | **PATCH** /organizations/{organization_id} | Update organization | https://docs.upsun.com/api/#tag/Organizations/operation/update-org | +| **PhoneNumberApi** | [**confirmPhoneNumber**](docs/Api/PhoneNumberApi.md#confirmphonenumber) | **POST** /users/{user_id}/phonenumber/{sid} | Confirm phone number | https://docs.upsun.com/api/#tag/PhoneNumber/operation/confirm-phone-number | +| **PhoneNumberApi** | [**verifyPhoneNumber**](docs/Api/PhoneNumberApi.md#verifyphonenumber) | **POST** /users/{user_id}/phonenumber | Verify phone number | https://docs.upsun.com/api/#tag/PhoneNumber/operation/verify-phone-number | +| **ProfilesApi** | [**getOrgAddress**](docs/Api/ProfilesApi.md#getorgaddress) | **GET** /organizations/{organization_id}/address | Get address | https://docs.upsun.com/api/#tag/Profiles/operation/get-org-address | +| **ProfilesApi** | [**getOrgProfile**](docs/Api/ProfilesApi.md#getorgprofile) | **GET** /organizations/{organization_id}/profile | Get profile | https://docs.upsun.com/api/#tag/Profiles/operation/get-org-profile | +| **ProfilesApi** | [**updateOrgAddress**](docs/Api/ProfilesApi.md#updateorgaddress) | **PATCH** /organizations/{organization_id}/address | Update address | https://docs.upsun.com/api/#tag/Profiles/operation/update-org-address | +| **ProfilesApi** | [**updateOrgProfile**](docs/Api/ProfilesApi.md#updateorgprofile) | **PATCH** /organizations/{organization_id}/profile | Update profile | https://docs.upsun.com/api/#tag/Profiles/operation/update-org-profile | +| **ProjectApi** | [**actionProjectsClearBuildCache**](docs/Api/ProjectApi.md#actionprojectsclearbuildcache) | **POST** /projects/{projectId}/clear_build_cache | Clear project build cache | https://docs.upsun.com/api/#tag/Project/operation/action-projects-clear-build-cache | +| **ProjectApi** | [**getProjects**](docs/Api/ProjectApi.md#getprojects) | **GET** /projects/{projectId} | Get a project | https://docs.upsun.com/api/#tag/Project/operation/get-projects | +| **ProjectApi** | [**getProjectsCapabilities**](docs/Api/ProjectApi.md#getprojectscapabilities) | **GET** /projects/{projectId}/capabilities | Get a project's capabilities | https://docs.upsun.com/api/#tag/Project/operation/get-projects-capabilities | +| **ProjectApi** | [**updateProjects**](docs/Api/ProjectApi.md#updateprojects) | **PATCH** /projects/{projectId} | Update a project | https://docs.upsun.com/api/#tag/Project/operation/update-projects | +| **ProjectActivityApi** | [**actionProjectsActivitiesCancel**](docs/Api/ProjectActivityApi.md#actionprojectsactivitiescancel) | **POST** /projects/{projectId}/activities/{activityId}/cancel | Cancel a project activity | https://docs.upsun.com/api/#tag/Project-Activity/operation/action-projects-activities-cancel | +| **ProjectActivityApi** | [**getProjectsActivities**](docs/Api/ProjectActivityApi.md#getprojectsactivities) | **GET** /projects/{projectId}/activities/{activityId} | Get a project activity log entry | https://docs.upsun.com/api/#tag/Project-Activity/operation/get-projects-activities | +| **ProjectActivityApi** | [**listProjectsActivities**](docs/Api/ProjectActivityApi.md#listprojectsactivities) | **GET** /projects/{projectId}/activities | Get project activity log | https://docs.upsun.com/api/#tag/Project-Activity/operation/list-projects-activities | +| **ProjectInvitationsApi** | [**cancelProjectInvite**](docs/Api/ProjectInvitationsApi.md#cancelprojectinvite) | **DELETE** /projects/{project_id}/invitations/{invitation_id} | Cancel a pending invitation to a project | https://docs.upsun.com/api/#tag/Project-Invitations/operation/cancel-project-invite | +| **ProjectInvitationsApi** | [**createProjectInvite**](docs/Api/ProjectInvitationsApi.md#createprojectinvite) | **POST** /projects/{project_id}/invitations | Invite user to a project by email | https://docs.upsun.com/api/#tag/Project-Invitations/operation/create-project-invite | +| **ProjectInvitationsApi** | [**listProjectInvites**](docs/Api/ProjectInvitationsApi.md#listprojectinvites) | **GET** /projects/{project_id}/invitations | List invitations to a project | https://docs.upsun.com/api/#tag/Project-Invitations/operation/list-project-invites | +| **ProjectSettingsApi** | [**getProjectsSettings**](docs/Api/ProjectSettingsApi.md#getprojectssettings) | **GET** /projects/{projectId}/settings | Get list of project settings | https://docs.upsun.com/api/#tag/Project-Settings/operation/get-projects-settings | +| **ProjectSettingsApi** | [**updateProjectsSettings**](docs/Api/ProjectSettingsApi.md#updateprojectssettings) | **PATCH** /projects/{projectId}/settings | Update a project setting | https://docs.upsun.com/api/#tag/Project-Settings/operation/update-projects-settings | +| **ProjectVariablesApi** | [**createProjectsVariables**](docs/Api/ProjectVariablesApi.md#createprojectsvariables) | **POST** /projects/{projectId}/variables | Add a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/create-projects-variables | +| **ProjectVariablesApi** | [**deleteProjectsVariables**](docs/Api/ProjectVariablesApi.md#deleteprojectsvariables) | **DELETE** /projects/{projectId}/variables/{projectVariableId} | Delete a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/delete-projects-variables | +| **ProjectVariablesApi** | [**getProjectsVariables**](docs/Api/ProjectVariablesApi.md#getprojectsvariables) | **GET** /projects/{projectId}/variables/{projectVariableId} | Get a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/get-projects-variables | +| **ProjectVariablesApi** | [**listProjectsVariables**](docs/Api/ProjectVariablesApi.md#listprojectsvariables) | **GET** /projects/{projectId}/variables | Get list of project variables | https://docs.upsun.com/api/#tag/Project-Variables/operation/list-projects-variables | +| **ProjectVariablesApi** | [**updateProjectsVariables**](docs/Api/ProjectVariablesApi.md#updateprojectsvariables) | **PATCH** /projects/{projectId}/variables/{projectVariableId} | Update a project variable | https://docs.upsun.com/api/#tag/Project-Variables/operation/update-projects-variables | +| **RecordsApi** | [**listOrgPlanRecords**](docs/Api/RecordsApi.md#listorgplanrecords) | **GET** /organizations/{organization_id}/records/plan | List plan records | https://docs.upsun.com/api/#tag/Records/operation/list-org-plan-records | +| **RecordsApi** | [**listOrgUsageRecords**](docs/Api/RecordsApi.md#listorgusagerecords) | **GET** /organizations/{organization_id}/records/usage | List usage records | https://docs.upsun.com/api/#tag/Records/operation/list-org-usage-records | +| **ReferencesApi** | [**listReferencedOrgs**](docs/Api/ReferencesApi.md#listreferencedorgs) | **GET** /ref/organizations | List referenced organizations | https://docs.upsun.com/api/#tag/References/operation/list-referenced-orgs | +| **ReferencesApi** | [**listReferencedProjects**](docs/Api/ReferencesApi.md#listreferencedprojects) | **GET** /ref/projects | List referenced projects | https://docs.upsun.com/api/#tag/References/operation/list-referenced-projects | +| **ReferencesApi** | [**listReferencedRegions**](docs/Api/ReferencesApi.md#listreferencedregions) | **GET** /ref/regions | List referenced regions | https://docs.upsun.com/api/#tag/References/operation/list-referenced-regions | +| **ReferencesApi** | [**listReferencedTeams**](docs/Api/ReferencesApi.md#listreferencedteams) | **GET** /ref/teams | List referenced teams | https://docs.upsun.com/api/#tag/References/operation/list-referenced-teams | +| **ReferencesApi** | [**listReferencedUsers**](docs/Api/ReferencesApi.md#listreferencedusers) | **GET** /ref/users | List referenced users | https://docs.upsun.com/api/#tag/References/operation/list-referenced-users | +| **RegionsApi** | [**getRegion**](docs/Api/RegionsApi.md#getregion) | **GET** /regions/{region_id} | Get region | https://docs.upsun.com/api/#tag/Regions/operation/get-region | +| **RegionsApi** | [**listRegions**](docs/Api/RegionsApi.md#listregions) | **GET** /regions | List regions | https://docs.upsun.com/api/#tag/Regions/operation/list-regions | +| **RepositoryApi** | [**getProjectsGitBlobs**](docs/Api/RepositoryApi.md#getprojectsgitblobs) | **GET** /projects/{projectId}/git/blobs/{repositoryBlobId} | Get a blob object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-blobs | +| **RepositoryApi** | [**getProjectsGitCommits**](docs/Api/RepositoryApi.md#getprojectsgitcommits) | **GET** /projects/{projectId}/git/commits/{repositoryCommitId} | Get a commit object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-commits | +| **RepositoryApi** | [**getProjectsGitRefs**](docs/Api/RepositoryApi.md#getprojectsgitrefs) | **GET** /projects/{projectId}/git/refs/{repositoryRefId} | Get a ref object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-refs | +| **RepositoryApi** | [**getProjectsGitTrees**](docs/Api/RepositoryApi.md#getprojectsgittrees) | **GET** /projects/{projectId}/git/trees/{repositoryTreeId} | Get a tree object | https://docs.upsun.com/api/#tag/Repository/operation/get-projects-git-trees | +| **RepositoryApi** | [**listProjectsGitRefs**](docs/Api/RepositoryApi.md#listprojectsgitrefs) | **GET** /projects/{projectId}/git/refs | Get list of repository refs | https://docs.upsun.com/api/#tag/Repository/operation/list-projects-git-refs | +| **RoutingApi** | [**getProjectsEnvironmentsRoutes**](docs/Api/RoutingApi.md#getprojectsenvironmentsroutes) | **GET** /projects/{projectId}/environments/{environmentId}/routes/{routeId} | Get a route's info | https://docs.upsun.com/api/#tag/Routing/operation/get-projects-environments-routes | +| **RoutingApi** | [**listProjectsEnvironmentsRoutes**](docs/Api/RoutingApi.md#listprojectsenvironmentsroutes) | **GET** /projects/{projectId}/environments/{environmentId}/routes | Get list of routes | https://docs.upsun.com/api/#tag/Routing/operation/list-projects-environments-routes | +| **RuntimeOperationsApi** | [**runOperation**](docs/Api/RuntimeOperationsApi.md#runoperation) | **POST** /projects/{projectId}/environments/{environmentId}/deployments/{deploymentId}/operations | Execute a runtime operation | https://docs.upsun.com/api/#tag/Runtime-Operations/operation/run-operation | +| **SourceOperationsApi** | [**listProjectsEnvironmentsSourceOperations**](docs/Api/SourceOperationsApi.md#listprojectsenvironmentssourceoperations) | **GET** /projects/{projectId}/environments/{environmentId}/source-operations | List source operations | https://docs.upsun.com/api/#tag/Source-Operations/operation/list-projects-environments-source-operations | +| **SourceOperationsApi** | [**runSourceOperation**](docs/Api/SourceOperationsApi.md#runsourceoperation) | **POST** /projects/{projectId}/environments/{environmentId}/source-operation | Trigger a source operation | https://docs.upsun.com/api/#tag/Source-Operations/operation/run-source-operation | +| **SshKeysApi** | [**createSshKey**](docs/Api/SshKeysApi.md#createsshkey) | **POST** /ssh_keys | Add a new public SSH key to a user | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/create-ssh-key | +| **SshKeysApi** | [**deleteSshKey**](docs/Api/SshKeysApi.md#deletesshkey) | **DELETE** /ssh_keys/{key_id} | Delete an SSH key | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/delete-ssh-key | +| **SshKeysApi** | [**getSshKey**](docs/Api/SshKeysApi.md#getsshkey) | **GET** /ssh_keys/{key_id} | Get an SSH key | https://docs.upsun.com/api/#tag/Ssh-Keys/operation/get-ssh-key | +| **SubscriptionsApi** | [**canCreateNewOrgSubscription**](docs/Api/SubscriptionsApi.md#cancreateneworgsubscription) | **GET** /organizations/{organization_id}/subscriptions/can-create | Checks if the user is able to create a new project. | https://docs.upsun.com/api/#tag/Subscriptions/operation/can-create-new-org-subscription | +| **SubscriptionsApi** | [**canUpdateSubscription**](docs/Api/SubscriptionsApi.md#canupdatesubscription) | **GET** /subscriptions/{subscriptionId}/can-update | Checks if the user is able to update a project. | https://docs.upsun.com/api/#tag/Subscriptions/operation/can-update-subscription | +| **SubscriptionsApi** | [**createOrgSubscription**](docs/Api/SubscriptionsApi.md#createorgsubscription) | **POST** /organizations/{organization_id}/subscriptions | Create subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/create-org-subscription | +| **SubscriptionsApi** | [**deleteOrgSubscription**](docs/Api/SubscriptionsApi.md#deleteorgsubscription) | **DELETE** /organizations/{organization_id}/subscriptions/{subscription_id} | Delete subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/delete-org-subscription | +| **SubscriptionsApi** | [**estimateNewOrgSubscription**](docs/Api/SubscriptionsApi.md#estimateneworgsubscription) | **GET** /organizations/{organization_id}/subscriptions/estimate | Estimate the price of a new subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/estimate-new-org-subscription | +| **SubscriptionsApi** | [**estimateOrgSubscription**](docs/Api/SubscriptionsApi.md#estimateorgsubscription) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/estimate | Estimate the price of a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/estimate-org-subscription | +| **SubscriptionsApi** | [**getOrgSubscription**](docs/Api/SubscriptionsApi.md#getorgsubscription) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id} | Get subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-org-subscription | +| **SubscriptionsApi** | [**getOrgSubscriptionCurrentUsage**](docs/Api/SubscriptionsApi.md#getorgsubscriptioncurrentusage) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/current_usage | Get current usage for a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-org-subscription-current-usage | +| **SubscriptionsApi** | [**getSubscriptionUsageAlerts**](docs/Api/SubscriptionsApi.md#getsubscriptionusagealerts) | **GET** /organizations/{organization_id}/alerts/subscriptions/{subscription_id}/usage | Get usage alerts | https://docs.upsun.com/api/#tag/Subscriptions/operation/get-subscription-usage-alerts | +| **SubscriptionsApi** | [**listOrgSubscriptions**](docs/Api/SubscriptionsApi.md#listorgsubscriptions) | **GET** /organizations/{organization_id}/subscriptions | List subscriptions | https://docs.upsun.com/api/#tag/Subscriptions/operation/list-org-subscriptions | +| **SubscriptionsApi** | [**listSubscriptionAddons**](docs/Api/SubscriptionsApi.md#listsubscriptionaddons) | **GET** /organizations/{organization_id}/subscriptions/{subscription_id}/addons | List addons for a subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/list-subscription-addons | +| **SubscriptionsApi** | [**updateOrgSubscription**](docs/Api/SubscriptionsApi.md#updateorgsubscription) | **PATCH** /organizations/{organization_id}/subscriptions/{subscription_id} | Update subscription | https://docs.upsun.com/api/#tag/Subscriptions/operation/update-org-subscription | +| **SubscriptionsApi** | [**updateSubscriptionUsageAlerts**](docs/Api/SubscriptionsApi.md#updatesubscriptionusagealerts) | **PATCH** /organizations/{organization_id}/alerts/subscriptions/{subscription_id}/usage | Update usage alerts. | https://docs.upsun.com/api/#tag/Subscriptions/operation/update-subscription-usage-alerts | +| **SupportApi** | [**createTicket**](docs/Api/SupportApi.md#createticket) | **POST** /tickets | Create a new support ticket | https://docs.upsun.com/api/#tag/Support/operation/create-ticket | +| **SupportApi** | [**listTicketCategories**](docs/Api/SupportApi.md#listticketcategories) | **GET** /tickets/category | List support ticket categories | https://docs.upsun.com/api/#tag/Support/operation/list-ticket-categories | +| **SupportApi** | [**listTicketPriorities**](docs/Api/SupportApi.md#listticketpriorities) | **GET** /tickets/priority | List support ticket priorities | https://docs.upsun.com/api/#tag/Support/operation/list-ticket-priorities | +| **SupportApi** | [**updateTicket**](docs/Api/SupportApi.md#updateticket) | **PATCH** /tickets/{ticket_id} | Update a ticket | https://docs.upsun.com/api/#tag/Support/operation/update-ticket | +| **SystemInformationApi** | [**actionProjectsSystemRestart**](docs/Api/SystemInformationApi.md#actionprojectssystemrestart) | **POST** /projects/{projectId}/system/restart | Restart the Git server | https://docs.upsun.com/api/#tag/System-Information/operation/action-projects-system-restart | +| **SystemInformationApi** | [**getProjectsSystem**](docs/Api/SystemInformationApi.md#getprojectssystem) | **GET** /projects/{projectId}/system | Get information about the Git server. | https://docs.upsun.com/api/#tag/System-Information/operation/get-projects-system | +| **TeamAccessApi** | [**getProjectTeamAccess**](docs/Api/TeamAccessApi.md#getprojectteamaccess) | **GET** /projects/{project_id}/team-access/{team_id} | Get team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/get-project-team-access | +| **TeamAccessApi** | [**getTeamProjectAccess**](docs/Api/TeamAccessApi.md#getteamprojectaccess) | **GET** /teams/{team_id}/project-access/{project_id} | Get project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/get-team-project-access | +| **TeamAccessApi** | [**grantProjectTeamAccess**](docs/Api/TeamAccessApi.md#grantprojectteamaccess) | **POST** /projects/{project_id}/team-access | Grant team access to a project | https://docs.upsun.com/api/#tag/Team-Access/operation/grant-project-team-access | +| **TeamAccessApi** | [**grantTeamProjectAccess**](docs/Api/TeamAccessApi.md#grantteamprojectaccess) | **POST** /teams/{team_id}/project-access | Grant project access to a team | https://docs.upsun.com/api/#tag/Team-Access/operation/grant-team-project-access | +| **TeamAccessApi** | [**listProjectTeamAccess**](docs/Api/TeamAccessApi.md#listprojectteamaccess) | **GET** /projects/{project_id}/team-access | List team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/list-project-team-access | +| **TeamAccessApi** | [**listTeamProjectAccess**](docs/Api/TeamAccessApi.md#listteamprojectaccess) | **GET** /teams/{team_id}/project-access | List project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/list-team-project-access | +| **TeamAccessApi** | [**removeProjectTeamAccess**](docs/Api/TeamAccessApi.md#removeprojectteamaccess) | **DELETE** /projects/{project_id}/team-access/{team_id} | Remove team access for a project | https://docs.upsun.com/api/#tag/Team-Access/operation/remove-project-team-access | +| **TeamAccessApi** | [**removeTeamProjectAccess**](docs/Api/TeamAccessApi.md#removeteamprojectaccess) | **DELETE** /teams/{team_id}/project-access/{project_id} | Remove project access for a team | https://docs.upsun.com/api/#tag/Team-Access/operation/remove-team-project-access | +| **TeamsApi** | [**createTeam**](docs/Api/TeamsApi.md#createteam) | **POST** /teams | Create team | https://docs.upsun.com/api/#tag/Teams/operation/create-team | +| **TeamsApi** | [**createTeamMember**](docs/Api/TeamsApi.md#createteammember) | **POST** /teams/{team_id}/members | Create team member | https://docs.upsun.com/api/#tag/Teams/operation/create-team-member | +| **TeamsApi** | [**deleteTeam**](docs/Api/TeamsApi.md#deleteteam) | **DELETE** /teams/{team_id} | Delete team | https://docs.upsun.com/api/#tag/Teams/operation/delete-team | +| **TeamsApi** | [**deleteTeamMember**](docs/Api/TeamsApi.md#deleteteammember) | **DELETE** /teams/{team_id}/members/{user_id} | Delete team member | https://docs.upsun.com/api/#tag/Teams/operation/delete-team-member | +| **TeamsApi** | [**getTeam**](docs/Api/TeamsApi.md#getteam) | **GET** /teams/{team_id} | Get team | https://docs.upsun.com/api/#tag/Teams/operation/get-team | +| **TeamsApi** | [**getTeamMember**](docs/Api/TeamsApi.md#getteammember) | **GET** /teams/{team_id}/members/{user_id} | Get team member | https://docs.upsun.com/api/#tag/Teams/operation/get-team-member | +| **TeamsApi** | [**listTeamMembers**](docs/Api/TeamsApi.md#listteammembers) | **GET** /teams/{team_id}/members | List team members | https://docs.upsun.com/api/#tag/Teams/operation/list-team-members | +| **TeamsApi** | [**listTeams**](docs/Api/TeamsApi.md#listteams) | **GET** /teams | List teams | https://docs.upsun.com/api/#tag/Teams/operation/list-teams | +| **TeamsApi** | [**listUserTeams**](docs/Api/TeamsApi.md#listuserteams) | **GET** /users/{user_id}/teams | User teams | https://docs.upsun.com/api/#tag/Teams/operation/list-user-teams | +| **TeamsApi** | [**updateTeam**](docs/Api/TeamsApi.md#updateteam) | **PATCH** /teams/{team_id} | Update team | https://docs.upsun.com/api/#tag/Teams/operation/update-team | +| **ThirdPartyIntegrationsApi** | [**createProjectsIntegrations**](docs/Api/ThirdPartyIntegrationsApi.md#createprojectsintegrations) | **POST** /projects/{projectId}/integrations | Integrate project with a third-party service | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/create-projects-integrations | +| **ThirdPartyIntegrationsApi** | [**deleteProjectsIntegrations**](docs/Api/ThirdPartyIntegrationsApi.md#deleteprojectsintegrations) | **DELETE** /projects/{projectId}/integrations/{integrationId} | Delete an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/delete-projects-integrations | +| **ThirdPartyIntegrationsApi** | [**getProjectsIntegrations**](docs/Api/ThirdPartyIntegrationsApi.md#getprojectsintegrations) | **GET** /projects/{projectId}/integrations/{integrationId} | Get information about an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/get-projects-integrations | +| **ThirdPartyIntegrationsApi** | [**listProjectsIntegrations**](docs/Api/ThirdPartyIntegrationsApi.md#listprojectsintegrations) | **GET** /projects/{projectId}/integrations | Get list of existing integrations for a project | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/list-projects-integrations | +| **ThirdPartyIntegrationsApi** | [**updateProjectsIntegrations**](docs/Api/ThirdPartyIntegrationsApi.md#updateprojectsintegrations) | **PATCH** /projects/{projectId}/integrations/{integrationId} | Update an existing third-party integration | https://docs.upsun.com/api/#tag/Third-Party-Integrations/operation/update-projects-integrations | +| **UserAccessApi** | [**getProjectUserAccess**](docs/Api/UserAccessApi.md#getprojectuseraccess) | **GET** /projects/{project_id}/user-access/{user_id} | Get user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/get-project-user-access | +| **UserAccessApi** | [**getUserProjectAccess**](docs/Api/UserAccessApi.md#getuserprojectaccess) | **GET** /users/{user_id}/project-access/{project_id} | Get project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/get-user-project-access | +| **UserAccessApi** | [**grantProjectUserAccess**](docs/Api/UserAccessApi.md#grantprojectuseraccess) | **POST** /projects/{project_id}/user-access | Grant user access to a project | https://docs.upsun.com/api/#tag/User-Access/operation/grant-project-user-access | +| **UserAccessApi** | [**grantUserProjectAccess**](docs/Api/UserAccessApi.md#grantuserprojectaccess) | **POST** /users/{user_id}/project-access | Grant project access to a user | https://docs.upsun.com/api/#tag/User-Access/operation/grant-user-project-access | +| **UserAccessApi** | [**listProjectUserAccess**](docs/Api/UserAccessApi.md#listprojectuseraccess) | **GET** /projects/{project_id}/user-access | List user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/list-project-user-access | +| **UserAccessApi** | [**listUserProjectAccess**](docs/Api/UserAccessApi.md#listuserprojectaccess) | **GET** /users/{user_id}/project-access | List project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/list-user-project-access | +| **UserAccessApi** | [**removeProjectUserAccess**](docs/Api/UserAccessApi.md#removeprojectuseraccess) | **DELETE** /projects/{project_id}/user-access/{user_id} | Remove user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/remove-project-user-access | +| **UserAccessApi** | [**removeUserProjectAccess**](docs/Api/UserAccessApi.md#removeuserprojectaccess) | **DELETE** /users/{user_id}/project-access/{project_id} | Remove project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/remove-user-project-access | +| **UserAccessApi** | [**updateProjectUserAccess**](docs/Api/UserAccessApi.md#updateprojectuseraccess) | **PATCH** /projects/{project_id}/user-access/{user_id} | Update user access for a project | https://docs.upsun.com/api/#tag/User-Access/operation/update-project-user-access | +| **UserAccessApi** | [**updateUserProjectAccess**](docs/Api/UserAccessApi.md#updateuserprojectaccess) | **PATCH** /users/{user_id}/project-access/{project_id} | Update project access for a user | https://docs.upsun.com/api/#tag/User-Access/operation/update-user-project-access | +| **UserProfilesApi** | [**createProfilePicture**](docs/Api/UserProfilesApi.md#createprofilepicture) | **POST** /profile/{uuid}/picture | Create a user profile picture | https://docs.upsun.com/api/#tag/User-Profiles/operation/create-profile-picture | +| **UserProfilesApi** | [**deleteProfilePicture**](docs/Api/UserProfilesApi.md#deleteprofilepicture) | **DELETE** /profile/{uuid}/picture | Delete a user profile picture | https://docs.upsun.com/api/#tag/User-Profiles/operation/delete-profile-picture | +| **UserProfilesApi** | [**getAddress**](docs/Api/UserProfilesApi.md#getaddress) | **GET** /profiles/{userId}/address | Get a user address | https://docs.upsun.com/api/#tag/User-Profiles/operation/get-address | +| **UserProfilesApi** | [**getProfile**](docs/Api/UserProfilesApi.md#getprofile) | **GET** /profiles/{userId} | Get a single user profile | https://docs.upsun.com/api/#tag/User-Profiles/operation/get-profile | +| **UserProfilesApi** | [**listProfiles**](docs/Api/UserProfilesApi.md#listprofiles) | **GET** /profiles | List user profiles | https://docs.upsun.com/api/#tag/User-Profiles/operation/list-profiles | +| **UserProfilesApi** | [**updateAddress**](docs/Api/UserProfilesApi.md#updateaddress) | **PATCH** /profiles/{userId}/address | Update a user address | https://docs.upsun.com/api/#tag/User-Profiles/operation/update-address | +| **UserProfilesApi** | [**updateProfile**](docs/Api/UserProfilesApi.md#updateprofile) | **PATCH** /profiles/{userId} | Update a user profile | https://docs.upsun.com/api/#tag/User-Profiles/operation/update-profile | +| **UsersApi** | [**getCurrentUser**](docs/Api/UsersApi.md#getcurrentuser) | **GET** /users/me | Get the current user | https://docs.upsun.com/api/#tag/Users/operation/get-current-user | +| **UsersApi** | [**getCurrentUserDeprecated**](docs/Api/UsersApi.md#getcurrentuserdeprecated) | **GET** /me | Get current logged-in user info | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-deprecated | +| **UsersApi** | [**getCurrentUserVerificationStatus**](docs/Api/UsersApi.md#getcurrentuserverificationstatus) | **POST** /me/phone | Check if phone verification is required | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-verification-status | +| **UsersApi** | [**getCurrentUserVerificationStatusFull**](docs/Api/UsersApi.md#getcurrentuserverificationstatusfull) | **POST** /me/verification | Check if verification is required | https://docs.upsun.com/api/#tag/Users/operation/get-current-user-verification-status-full | +| **UsersApi** | [**getUser**](docs/Api/UsersApi.md#getuser) | **GET** /users/{user_id} | Get a user | https://docs.upsun.com/api/#tag/Users/operation/get-user | +| **UsersApi** | [**getUserByEmailAddress**](docs/Api/UsersApi.md#getuserbyemailaddress) | **GET** /users/email={email} | Get a user by email | https://docs.upsun.com/api/#tag/Users/operation/get-user-by-email-address | +| **UsersApi** | [**getUserByUsername**](docs/Api/UsersApi.md#getuserbyusername) | **GET** /users/username={username} | Get a user by username | https://docs.upsun.com/api/#tag/Users/operation/get-user-by-username | +| **UsersApi** | [**resetEmailAddress**](docs/Api/UsersApi.md#resetemailaddress) | **POST** /users/{user_id}/emailaddress | Reset email address | https://docs.upsun.com/api/#tag/Users/operation/reset-email-address | +| **UsersApi** | [**resetPassword**](docs/Api/UsersApi.md#resetpassword) | **POST** /users/{user_id}/resetpassword | Reset user password | https://docs.upsun.com/api/#tag/Users/operation/reset-password | +| **UsersApi** | [**updateUser**](docs/Api/UsersApi.md#updateuser) | **PATCH** /users/{user_id} | Update a user | https://docs.upsun.com/api/#tag/Users/operation/update-user | +| **VouchersApi** | [**applyOrgVoucher**](docs/Api/VouchersApi.md#applyorgvoucher) | **POST** /organizations/{organization_id}/vouchers/apply | Apply voucher | https://docs.upsun.com/api/#tag/Vouchers/operation/apply-org-voucher | +| **VouchersApi** | [**listOrgVouchers**](docs/Api/VouchersApi.md#listorgvouchers) | **GET** /organizations/{organization_id}/vouchers | List vouchers | https://docs.upsun.com/api/#tag/Vouchers/operation/list-org-vouchers | + +## Models + +- [AcceptedResponse](docs/Model/AcceptedResponse.md) +- [AccessControlInner](docs/Model/AccessControlInner.md) +- [Activity](docs/Model/Activity.md) +- [AddonCredential](docs/Model/AddonCredential.md) +- [AddonCredential1](docs/Model/AddonCredential1.md) +- [Address](docs/Model/Address.md) +- [AddressGrantsInner](docs/Model/AddressGrantsInner.md) +- [AddressMetadata](docs/Model/AddressMetadata.md) +- [AddressMetadataMetadata](docs/Model/AddressMetadataMetadata.md) +- [Alert](docs/Model/Alert.md) +- [ApiToken](docs/Model/ApiToken.md) +- [ApplyOrgVoucherRequest](docs/Model/ApplyOrgVoucherRequest.md) +- [ArrayFilter](docs/Model/ArrayFilter.md) +- [Author](docs/Model/Author.md) +- [AutoscalerCPUPressureTrigger](docs/Model/AutoscalerCPUPressureTrigger.md) +- [AutoscalerCPUResources](docs/Model/AutoscalerCPUResources.md) +- [AutoscalerCPUTrigger](docs/Model/AutoscalerCPUTrigger.md) +- [AutoscalerCondition](docs/Model/AutoscalerCondition.md) +- [AutoscalerDuration](docs/Model/AutoscalerDuration.md) +- [AutoscalerInstances](docs/Model/AutoscalerInstances.md) +- [AutoscalerMemoryPressureTrigger](docs/Model/AutoscalerMemoryPressureTrigger.md) +- [AutoscalerMemoryResources](docs/Model/AutoscalerMemoryResources.md) +- [AutoscalerMemoryTrigger](docs/Model/AutoscalerMemoryTrigger.md) +- [AutoscalerResources](docs/Model/AutoscalerResources.md) +- [AutoscalerScalingCooldown](docs/Model/AutoscalerScalingCooldown.md) +- [AutoscalerScalingFactor](docs/Model/AutoscalerScalingFactor.md) +- [AutoscalerServiceSettings](docs/Model/AutoscalerServiceSettings.md) +- [AutoscalerSettings](docs/Model/AutoscalerSettings.md) +- [AutoscalerTriggers](docs/Model/AutoscalerTriggers.md) +- [Autoscaling](docs/Model/Autoscaling.md) +- [Backup](docs/Model/Backup.md) +- [Bitbucket](docs/Model/Bitbucket.md) +- [BitbucketIntegration](docs/Model/BitbucketIntegration.md) +- [BitbucketIntegrationCreateInput](docs/Model/BitbucketIntegrationCreateInput.md) +- [BitbucketIntegrationPatch](docs/Model/BitbucketIntegrationPatch.md) +- [BitbucketServer](docs/Model/BitbucketServer.md) +- [BitbucketServerIntegration](docs/Model/BitbucketServerIntegration.md) +- [BitbucketServerIntegrationCreateInput](docs/Model/BitbucketServerIntegrationCreateInput.md) +- [BitbucketServerIntegrationPatch](docs/Model/BitbucketServerIntegrationPatch.md) +- [Blackfire](docs/Model/Blackfire.md) +- [BlackfireIntegration](docs/Model/BlackfireIntegration.md) +- [BlackfireIntegrationCreateInput](docs/Model/BlackfireIntegrationCreateInput.md) +- [BlackfireIntegrationPatch](docs/Model/BlackfireIntegrationPatch.md) +- [Blob](docs/Model/Blob.md) +- [BuildCachesValue](docs/Model/BuildCachesValue.md) +- [BuildConfiguration](docs/Model/BuildConfiguration.md) +- [BuildResources](docs/Model/BuildResources.md) +- [BuildResources1](docs/Model/BuildResources1.md) +- [BuildResources2](docs/Model/BuildResources2.md) +- [CacheConfiguration](docs/Model/CacheConfiguration.md) +- [CanCreateNewOrgSubscription200Response](docs/Model/CanCreateNewOrgSubscription200Response.md) +- [CanCreateNewOrgSubscription200ResponseRequiredAction](docs/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.md) +- [CanUpdateSubscription200Response](docs/Model/CanUpdateSubscription200Response.md) +- [Certificate](docs/Model/Certificate.md) +- [CertificateCreateInput](docs/Model/CertificateCreateInput.md) +- [CertificatePatch](docs/Model/CertificatePatch.md) +- [CertificateProvisioner](docs/Model/CertificateProvisioner.md) +- [CertificateProvisionerPatch](docs/Model/CertificateProvisionerPatch.md) +- [Commands](docs/Model/Commands.md) +- [Commands1](docs/Model/Commands1.md) +- [Commands2](docs/Model/Commands2.md) +- [CommandsInner](docs/Model/CommandsInner.md) +- [Commit](docs/Model/Commit.md) +- [Committer](docs/Model/Committer.md) +- [Components](docs/Model/Components.md) +- [Config](docs/Model/Config.md) +- [ConfirmPhoneNumberRequest](docs/Model/ConfirmPhoneNumberRequest.md) +- [ConfirmTotpEnrollment200Response](docs/Model/ConfirmTotpEnrollment200Response.md) +- [ConfirmTotpEnrollmentRequest](docs/Model/ConfirmTotpEnrollmentRequest.md) +- [Connection](docs/Model/Connection.md) +- [ContainerProfilesValueValue](docs/Model/ContainerProfilesValueValue.md) +- [ContinuousProfilingConfiguration](docs/Model/ContinuousProfilingConfiguration.md) +- [CreateApiTokenRequest](docs/Model/CreateApiTokenRequest.md) +- [CreateAuthorizationCredentials200Response](docs/Model/CreateAuthorizationCredentials200Response.md) +- [CreateAuthorizationCredentials200ResponseRedirectToUrl](docs/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.md) +- [CreateOrgInviteRequest](docs/Model/CreateOrgInviteRequest.md) +- [CreateOrgMemberRequest](docs/Model/CreateOrgMemberRequest.md) +- [CreateOrgProjectRequest](docs/Model/CreateOrgProjectRequest.md) +- [CreateOrgRequest](docs/Model/CreateOrgRequest.md) +- [CreateOrgSubscriptionRequest](docs/Model/CreateOrgSubscriptionRequest.md) +- [CreateProfilePicture200Response](docs/Model/CreateProfilePicture200Response.md) +- [CreateProjectInviteRequest](docs/Model/CreateProjectInviteRequest.md) +- [CreateProjectInviteRequestEnvironmentsInner](docs/Model/CreateProjectInviteRequestEnvironmentsInner.md) +- [CreateProjectInviteRequestPermissionsInner](docs/Model/CreateProjectInviteRequestPermissionsInner.md) +- [CreateSshKeyRequest](docs/Model/CreateSshKeyRequest.md) +- [CreateTeamMemberRequest](docs/Model/CreateTeamMemberRequest.md) +- [CreateTeamRequest](docs/Model/CreateTeamRequest.md) +- [CreateTicketRequest](docs/Model/CreateTicketRequest.md) +- [CreateTicketRequestAttachmentsInner](docs/Model/CreateTicketRequestAttachmentsInner.md) +- [CronsDeploymentState](docs/Model/CronsDeploymentState.md) +- [CronsValue](docs/Model/CronsValue.md) +- [CurrencyAmount](docs/Model/CurrencyAmount.md) +- [CurrencyAmountNullable](docs/Model/CurrencyAmountNullable.md) +- [CurrentUser](docs/Model/CurrentUser.md) +- [CurrentUserCurrentTrialInner](docs/Model/CurrentUserCurrentTrialInner.md) +- [CurrentUserProjectsInner](docs/Model/CurrentUserProjectsInner.md) +- [CustomDomains](docs/Model/CustomDomains.md) +- [DataRetention](docs/Model/DataRetention.md) +- [DataRetentionConfigurationValue](docs/Model/DataRetentionConfigurationValue.md) +- [DataRetentionConfigurationValue1](docs/Model/DataRetentionConfigurationValue1.md) +- [DateTimeFilter](docs/Model/DateTimeFilter.md) +- [DedicatedDeploymentTarget](docs/Model/DedicatedDeploymentTarget.md) +- [DedicatedDeploymentTargetCreateInput](docs/Model/DedicatedDeploymentTargetCreateInput.md) +- [DedicatedDeploymentTargetPatch](docs/Model/DedicatedDeploymentTargetPatch.md) +- [DefaultConfig](docs/Model/DefaultConfig.md) +- [DefaultConfig1](docs/Model/DefaultConfig1.md) +- [DefaultResources](docs/Model/DefaultResources.md) +- [Deployment](docs/Model/Deployment.md) +- [DeploymentHostsInner](docs/Model/DeploymentHostsInner.md) +- [DeploymentState](docs/Model/DeploymentState.md) +- [DeploymentTarget](docs/Model/DeploymentTarget.md) +- [DeploymentTargetCreateInput](docs/Model/DeploymentTargetCreateInput.md) +- [DeploymentTargetPatch](docs/Model/DeploymentTargetPatch.md) +- [DevelopmentResources](docs/Model/DevelopmentResources.md) +- [Discount](docs/Model/Discount.md) +- [DiscountCommitment](docs/Model/DiscountCommitment.md) +- [DiscountCommitmentAmount](docs/Model/DiscountCommitmentAmount.md) +- [DiscountCommitmentNet](docs/Model/DiscountCommitmentNet.md) +- [DiscountDiscount](docs/Model/DiscountDiscount.md) +- [DiskResources](docs/Model/DiskResources.md) +- [DocrootsValue](docs/Model/DocrootsValue.md) +- [Domain](docs/Model/Domain.md) +- [DomainCreateInput](docs/Model/DomainCreateInput.md) +- [DomainPatch](docs/Model/DomainPatch.md) +- [EmailIntegration](docs/Model/EmailIntegration.md) +- [EmailIntegrationCreateInput](docs/Model/EmailIntegrationCreateInput.md) +- [EmailIntegrationPatch](docs/Model/EmailIntegrationPatch.md) +- [EnterpriseDeploymentTarget](docs/Model/EnterpriseDeploymentTarget.md) +- [EnterpriseDeploymentTargetCreateInput](docs/Model/EnterpriseDeploymentTargetCreateInput.md) +- [EnterpriseDeploymentTargetPatch](docs/Model/EnterpriseDeploymentTargetPatch.md) +- [Environment](docs/Model/Environment.md) +- [EnvironmentActivateInput](docs/Model/EnvironmentActivateInput.md) +- [EnvironmentBackupInput](docs/Model/EnvironmentBackupInput.md) +- [EnvironmentBranchInput](docs/Model/EnvironmentBranchInput.md) +- [EnvironmentDeployInput](docs/Model/EnvironmentDeployInput.md) +- [EnvironmentInfo](docs/Model/EnvironmentInfo.md) +- [EnvironmentInitializeInput](docs/Model/EnvironmentInitializeInput.md) +- [EnvironmentMergeInput](docs/Model/EnvironmentMergeInput.md) +- [EnvironmentOperationInput](docs/Model/EnvironmentOperationInput.md) +- [EnvironmentPatch](docs/Model/EnvironmentPatch.md) +- [EnvironmentRestoreInput](docs/Model/EnvironmentRestoreInput.md) +- [EnvironmentSourceOperation](docs/Model/EnvironmentSourceOperation.md) +- [EnvironmentSourceOperationInput](docs/Model/EnvironmentSourceOperationInput.md) +- [EnvironmentSynchronizeInput](docs/Model/EnvironmentSynchronizeInput.md) +- [EnvironmentType](docs/Model/EnvironmentType.md) +- [EnvironmentVariable](docs/Model/EnvironmentVariable.md) +- [EnvironmentVariableCreateInput](docs/Model/EnvironmentVariableCreateInput.md) +- [EnvironmentVariablePatch](docs/Model/EnvironmentVariablePatch.md) +- [EnvironmentVariablesInner](docs/Model/EnvironmentVariablesInner.md) +- [EnvironmentsCredentialsValue](docs/Model/EnvironmentsCredentialsValue.md) +- [Error](docs/Model/Error.md) +- [EstimationObject](docs/Model/EstimationObject.md) +- [FastlyCDN](docs/Model/FastlyCDN.md) +- [FastlyIntegration](docs/Model/FastlyIntegration.md) +- [FastlyIntegrationCreateInput](docs/Model/FastlyIntegrationCreateInput.md) +- [FastlyIntegrationPatch](docs/Model/FastlyIntegrationPatch.md) +- [FilesInner](docs/Model/FilesInner.md) +- [Firewall](docs/Model/Firewall.md) +- [FoundationDeploymentTarget](docs/Model/FoundationDeploymentTarget.md) +- [FoundationDeploymentTargetCreateInput](docs/Model/FoundationDeploymentTargetCreateInput.md) +- [FoundationDeploymentTargetPatch](docs/Model/FoundationDeploymentTargetPatch.md) +- [GetAddress200Response](docs/Model/GetAddress200Response.md) +- [GetCurrentUserVerificationStatus200Response](docs/Model/GetCurrentUserVerificationStatus200Response.md) +- [GetCurrentUserVerificationStatusFull200Response](docs/Model/GetCurrentUserVerificationStatusFull200Response.md) +- [GetOrgPrepaymentInfo200Response](docs/Model/GetOrgPrepaymentInfo200Response.md) +- [GetOrgPrepaymentInfo200ResponseLinks](docs/Model/GetOrgPrepaymentInfo200ResponseLinks.md) +- [GetOrgPrepaymentInfo200ResponseLinksSelf](docs/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.md) +- [GetOrgPrepaymentInfo200ResponseLinksTransactions](docs/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.md) +- [GetSubscriptionUsageAlerts200Response](docs/Model/GetSubscriptionUsageAlerts200Response.md) +- [GetTotpEnrollment200Response](docs/Model/GetTotpEnrollment200Response.md) +- [GetTypeAllowance200Response](docs/Model/GetTypeAllowance200Response.md) +- [GetTypeAllowance200ResponseCurrencies](docs/Model/GetTypeAllowance200ResponseCurrencies.md) +- [GetTypeAllowance200ResponseCurrenciesAUD](docs/Model/GetTypeAllowance200ResponseCurrenciesAUD.md) +- [GetTypeAllowance200ResponseCurrenciesCAD](docs/Model/GetTypeAllowance200ResponseCurrenciesCAD.md) +- [GetTypeAllowance200ResponseCurrenciesEUR](docs/Model/GetTypeAllowance200ResponseCurrenciesEUR.md) +- [GetTypeAllowance200ResponseCurrenciesGBP](docs/Model/GetTypeAllowance200ResponseCurrenciesGBP.md) +- [GetTypeAllowance200ResponseCurrenciesUSD](docs/Model/GetTypeAllowance200ResponseCurrenciesUSD.md) +- [GetUsageAlerts200Response](docs/Model/GetUsageAlerts200Response.md) +- [GitHub](docs/Model/GitHub.md) +- [GitLab](docs/Model/GitLab.md) +- [GitLabIntegration](docs/Model/GitLabIntegration.md) +- [GitLabIntegrationCreateInput](docs/Model/GitLabIntegrationCreateInput.md) +- [GitLabIntegrationPatch](docs/Model/GitLabIntegrationPatch.md) +- [GitServerConfiguration](docs/Model/GitServerConfiguration.md) +- [GithubIntegration](docs/Model/GithubIntegration.md) +- [GithubIntegrationCreateInput](docs/Model/GithubIntegrationCreateInput.md) +- [GithubIntegrationPatch](docs/Model/GithubIntegrationPatch.md) +- [GoogleSSOConfig](docs/Model/GoogleSSOConfig.md) +- [GrantProjectTeamAccessRequestInner](docs/Model/GrantProjectTeamAccessRequestInner.md) +- [GrantProjectUserAccessRequestInner](docs/Model/GrantProjectUserAccessRequestInner.md) +- [GrantTeamProjectAccessRequestInner](docs/Model/GrantTeamProjectAccessRequestInner.md) +- [GrantUserProjectAccessRequestInner](docs/Model/GrantUserProjectAccessRequestInner.md) +- [GuaranteedResources](docs/Model/GuaranteedResources.md) +- [HTTPLogForwarding](docs/Model/HTTPLogForwarding.md) +- [HalLinks](docs/Model/HalLinks.md) +- [HalLinksNext](docs/Model/HalLinksNext.md) +- [HalLinksPrevious](docs/Model/HalLinksPrevious.md) +- [HalLinksSelf](docs/Model/HalLinksSelf.md) +- [HealthEmail](docs/Model/HealthEmail.md) +- [HealthPagerDuty](docs/Model/HealthPagerDuty.md) +- [HealthSlack](docs/Model/HealthSlack.md) +- [HealthWebHook](docs/Model/HealthWebHook.md) +- [HealthWebHookIntegration](docs/Model/HealthWebHookIntegration.md) +- [HealthWebHookIntegrationCreateInput](docs/Model/HealthWebHookIntegrationCreateInput.md) +- [HealthWebHookIntegrationPatch](docs/Model/HealthWebHookIntegrationPatch.md) +- [Hooks](docs/Model/Hooks.md) +- [HostsInner](docs/Model/HostsInner.md) +- [HttpAccessPermissions](docs/Model/HttpAccessPermissions.md) +- [HttpAccessPermissions1](docs/Model/HttpAccessPermissions1.md) +- [HttpAccessPermissions2](docs/Model/HttpAccessPermissions2.md) +- [HttpLogIntegration](docs/Model/HttpLogIntegration.md) +- [HttpLogIntegrationCreateInput](docs/Model/HttpLogIntegrationCreateInput.md) +- [HttpLogIntegrationPatch](docs/Model/HttpLogIntegrationPatch.md) +- [ImageTypeRestrictions](docs/Model/ImageTypeRestrictions.md) +- [ImagesValueValue](docs/Model/ImagesValueValue.md) +- [Integration](docs/Model/Integration.md) +- [IntegrationCreateInput](docs/Model/IntegrationCreateInput.md) +- [IntegrationPatch](docs/Model/IntegrationPatch.md) +- [Integrations](docs/Model/Integrations.md) +- [Invoice](docs/Model/Invoice.md) +- [InvoicePDF](docs/Model/InvoicePDF.md) +- [IssuerInner](docs/Model/IssuerInner.md) +- [LineItem](docs/Model/LineItem.md) +- [LineItemComponent](docs/Model/LineItemComponent.md) +- [Link](docs/Model/Link.md) +- [ListLinks](docs/Model/ListLinks.md) +- [ListOrgDiscounts200Response](docs/Model/ListOrgDiscounts200Response.md) +- [ListOrgInvoices200Response](docs/Model/ListOrgInvoices200Response.md) +- [ListOrgMembers200Response](docs/Model/ListOrgMembers200Response.md) +- [ListOrgOrders200Response](docs/Model/ListOrgOrders200Response.md) +- [ListOrgPlanRecords200Response](docs/Model/ListOrgPlanRecords200Response.md) +- [ListOrgPrepaymentTransactions200Response](docs/Model/ListOrgPrepaymentTransactions200Response.md) +- [ListOrgPrepaymentTransactions200ResponseLinks](docs/Model/ListOrgPrepaymentTransactions200ResponseLinks.md) +- [ListOrgPrepaymentTransactions200ResponseLinksNext](docs/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.md) +- [ListOrgPrepaymentTransactions200ResponseLinksPrepayment](docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.md) +- [ListOrgPrepaymentTransactions200ResponseLinksPrevious](docs/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.md) +- [ListOrgPrepaymentTransactions200ResponseLinksSelf](docs/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.md) +- [ListOrgProjects200Response](docs/Model/ListOrgProjects200Response.md) +- [ListOrgSubscriptions200Response](docs/Model/ListOrgSubscriptions200Response.md) +- [ListOrgUsageRecords200Response](docs/Model/ListOrgUsageRecords200Response.md) +- [ListOrgs200Response](docs/Model/ListOrgs200Response.md) +- [ListProfiles200Response](docs/Model/ListProfiles200Response.md) +- [ListProjectTeamAccess200Response](docs/Model/ListProjectTeamAccess200Response.md) +- [ListProjectUserAccess200Response](docs/Model/ListProjectUserAccess200Response.md) +- [ListRegions200Response](docs/Model/ListRegions200Response.md) +- [ListTeamMembers200Response](docs/Model/ListTeamMembers200Response.md) +- [ListTeams200Response](docs/Model/ListTeams200Response.md) +- [ListTicketCategories200ResponseInner](docs/Model/ListTicketCategories200ResponseInner.md) +- [ListTicketPriorities200ResponseInner](docs/Model/ListTicketPriorities200ResponseInner.md) +- [ListTickets200Response](docs/Model/ListTickets200Response.md) +- [ListUserExtendedAccess200Response](docs/Model/ListUserExtendedAccess200Response.md) +- [ListUserExtendedAccess200ResponseItemsInner](docs/Model/ListUserExtendedAccess200ResponseItemsInner.md) +- [ListUserOrgs200Response](docs/Model/ListUserOrgs200Response.md) +- [LogsForwarding](docs/Model/LogsForwarding.md) +- [MergeInfo](docs/Model/MergeInfo.md) +- [Metrics](docs/Model/Metrics.md) +- [MetricsMetadata](docs/Model/MetricsMetadata.md) +- [MetricsValue](docs/Model/MetricsValue.md) +- [MinimumResources](docs/Model/MinimumResources.md) +- [MountsValue](docs/Model/MountsValue.md) +- [NewRelic](docs/Model/NewRelic.md) +- [NewRelicIntegration](docs/Model/NewRelicIntegration.md) +- [NewRelicIntegrationCreateInput](docs/Model/NewRelicIntegrationCreateInput.md) +- [NewRelicIntegrationPatch](docs/Model/NewRelicIntegrationPatch.md) +- [OAuth2Consumer](docs/Model/OAuth2Consumer.md) +- [OAuth2Consumer1](docs/Model/OAuth2Consumer1.md) +- [Object](docs/Model/Object.md) +- [OpenTelemetry](docs/Model/OpenTelemetry.md) +- [OperationsValue](docs/Model/OperationsValue.md) +- [Order](docs/Model/Order.md) +- [OrderBillingPeriodLabel](docs/Model/OrderBillingPeriodLabel.md) +- [OrderLinks](docs/Model/OrderLinks.md) +- [OrderLinksInvoices](docs/Model/OrderLinksInvoices.md) +- [Organization](docs/Model/Organization.md) +- [OrganizationAddonsObject](docs/Model/OrganizationAddonsObject.md) +- [OrganizationAddonsObjectAvailable](docs/Model/OrganizationAddonsObjectAvailable.md) +- [OrganizationAddonsObjectCurrent](docs/Model/OrganizationAddonsObjectCurrent.md) +- [OrganizationAddonsObjectUpgradesAvailable](docs/Model/OrganizationAddonsObjectUpgradesAvailable.md) +- [OrganizationAlertConfig](docs/Model/OrganizationAlertConfig.md) +- [OrganizationAlertConfigConfig](docs/Model/OrganizationAlertConfigConfig.md) +- [OrganizationAlertConfigConfigThreshold](docs/Model/OrganizationAlertConfigConfigThreshold.md) +- [OrganizationCarbon](docs/Model/OrganizationCarbon.md) +- [OrganizationEstimationObject](docs/Model/OrganizationEstimationObject.md) +- [OrganizationEstimationObjectSubscriptions](docs/Model/OrganizationEstimationObjectSubscriptions.md) +- [OrganizationEstimationObjectSubscriptionsListInner](docs/Model/OrganizationEstimationObjectSubscriptionsListInner.md) +- [OrganizationEstimationObjectSubscriptionsListInnerUsage](docs/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.md) +- [OrganizationEstimationObjectUserLicenses](docs/Model/OrganizationEstimationObjectUserLicenses.md) +- [OrganizationEstimationObjectUserLicensesBase](docs/Model/OrganizationEstimationObjectUserLicensesBase.md) +- [OrganizationEstimationObjectUserLicensesBaseList](docs/Model/OrganizationEstimationObjectUserLicensesBaseList.md) +- [OrganizationEstimationObjectUserLicensesBaseListAdminUser](docs/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.md) +- [OrganizationEstimationObjectUserLicensesBaseListViewerUser](docs/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.md) +- [OrganizationEstimationObjectUserLicensesUserManagement](docs/Model/OrganizationEstimationObjectUserLicensesUserManagement.md) +- [OrganizationEstimationObjectUserLicensesUserManagementList](docs/Model/OrganizationEstimationObjectUserLicensesUserManagementList.md) +- [OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser](docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.md) +- [OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser](docs/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.md) +- [OrganizationInvitation](docs/Model/OrganizationInvitation.md) +- [OrganizationInvitationOwner](docs/Model/OrganizationInvitationOwner.md) +- [OrganizationLinks](docs/Model/OrganizationLinks.md) +- [OrganizationLinksAddress](docs/Model/OrganizationLinksAddress.md) +- [OrganizationLinksApplyVoucher](docs/Model/OrganizationLinksApplyVoucher.md) +- [OrganizationLinksCreateMember](docs/Model/OrganizationLinksCreateMember.md) +- [OrganizationLinksCreateSubscription](docs/Model/OrganizationLinksCreateSubscription.md) +- [OrganizationLinksDelete](docs/Model/OrganizationLinksDelete.md) +- [OrganizationLinksEstimateSubscription](docs/Model/OrganizationLinksEstimateSubscription.md) +- [OrganizationLinksMembers](docs/Model/OrganizationLinksMembers.md) +- [OrganizationLinksMfaEnforcement](docs/Model/OrganizationLinksMfaEnforcement.md) +- [OrganizationLinksOrders](docs/Model/OrganizationLinksOrders.md) +- [OrganizationLinksPaymentSource](docs/Model/OrganizationLinksPaymentSource.md) +- [OrganizationLinksProfile](docs/Model/OrganizationLinksProfile.md) +- [OrganizationLinksSelf](docs/Model/OrganizationLinksSelf.md) +- [OrganizationLinksSubscriptions](docs/Model/OrganizationLinksSubscriptions.md) +- [OrganizationLinksUpdate](docs/Model/OrganizationLinksUpdate.md) +- [OrganizationLinksVouchers](docs/Model/OrganizationLinksVouchers.md) +- [OrganizationMember](docs/Model/OrganizationMember.md) +- [OrganizationMemberLinks](docs/Model/OrganizationMemberLinks.md) +- [OrganizationMemberLinksDelete](docs/Model/OrganizationMemberLinksDelete.md) +- [OrganizationMemberLinksSelf](docs/Model/OrganizationMemberLinksSelf.md) +- [OrganizationMemberLinksUpdate](docs/Model/OrganizationMemberLinksUpdate.md) +- [OrganizationMfaEnforcement](docs/Model/OrganizationMfaEnforcement.md) +- [OrganizationProject](docs/Model/OrganizationProject.md) +- [OrganizationProjectCarbon](docs/Model/OrganizationProjectCarbon.md) +- [OrganizationProjectLinks](docs/Model/OrganizationProjectLinks.md) +- [OrganizationProjectLinksActivities](docs/Model/OrganizationProjectLinksActivities.md) +- [OrganizationProjectLinksAddons](docs/Model/OrganizationProjectLinksAddons.md) +- [OrganizationProjectLinksDelete](docs/Model/OrganizationProjectLinksDelete.md) +- [OrganizationProjectLinksSelf](docs/Model/OrganizationProjectLinksSelf.md) +- [OrganizationProjectLinksUpdate](docs/Model/OrganizationProjectLinksUpdate.md) +- [OrganizationReference](docs/Model/OrganizationReference.md) +- [OrganizationSSOConfig](docs/Model/OrganizationSSOConfig.md) +- [OutboundFirewall](docs/Model/OutboundFirewall.md) +- [OutboundFirewallRestrictionsInner](docs/Model/OutboundFirewallRestrictionsInner.md) +- [OwnerInfo](docs/Model/OwnerInfo.md) +- [PagerDutyIntegration](docs/Model/PagerDutyIntegration.md) +- [PagerDutyIntegrationCreateInput](docs/Model/PagerDutyIntegrationCreateInput.md) +- [PagerDutyIntegrationPatch](docs/Model/PagerDutyIntegrationPatch.md) +- [PathValue](docs/Model/PathValue.md) +- [PlanRecords](docs/Model/PlanRecords.md) +- [PreServiceResourcesOverridesValue](docs/Model/PreServiceResourcesOverridesValue.md) +- [PreflightChecks](docs/Model/PreflightChecks.md) +- [PrepaymentObject](docs/Model/PrepaymentObject.md) +- [PrepaymentObjectPrepayment](docs/Model/PrepaymentObjectPrepayment.md) +- [PrepaymentObjectPrepaymentBalance](docs/Model/PrepaymentObjectPrepaymentBalance.md) +- [PrepaymentTransactionObject](docs/Model/PrepaymentTransactionObject.md) +- [PrepaymentTransactionObjectAmount](docs/Model/PrepaymentTransactionObjectAmount.md) +- [ProdDomainStorage](docs/Model/ProdDomainStorage.md) +- [ProdDomainStorageCreateInput](docs/Model/ProdDomainStorageCreateInput.md) +- [ProdDomainStoragePatch](docs/Model/ProdDomainStoragePatch.md) +- [ProductionResources](docs/Model/ProductionResources.md) +- [Profile](docs/Model/Profile.md) +- [ProfileCurrentTrial](docs/Model/ProfileCurrentTrial.md) +- [ProfileCurrentTrialCurrent](docs/Model/ProfileCurrentTrialCurrent.md) +- [ProfileCurrentTrialProjects](docs/Model/ProfileCurrentTrialProjects.md) +- [ProfileCurrentTrialProjectsTotal](docs/Model/ProfileCurrentTrialProjectsTotal.md) +- [ProfileCurrentTrialSpend](docs/Model/ProfileCurrentTrialSpend.md) +- [ProfileCurrentTrialSpendRemaining](docs/Model/ProfileCurrentTrialSpendRemaining.md) +- [Project](docs/Model/Project.md) +- [ProjectAddon](docs/Model/ProjectAddon.md) +- [ProjectAddonBase](docs/Model/ProjectAddonBase.md) +- [ProjectAddonBaseLinks](docs/Model/ProjectAddonBaseLinks.md) +- [ProjectAddonBaseLinksDelete](docs/Model/ProjectAddonBaseLinksDelete.md) +- [ProjectAddonBaseLinksSelf](docs/Model/ProjectAddonBaseLinksSelf.md) +- [ProjectAddonBaseLinksUpdate](docs/Model/ProjectAddonBaseLinksUpdate.md) +- [ProjectAddonWithQuantityFields](docs/Model/ProjectAddonWithQuantityFields.md) +- [ProjectAddonWithSkuFields](docs/Model/ProjectAddonWithSkuFields.md) +- [ProjectCapabilities](docs/Model/ProjectCapabilities.md) +- [ProjectCarbon](docs/Model/ProjectCarbon.md) +- [ProjectInfo](docs/Model/ProjectInfo.md) +- [ProjectInvitation](docs/Model/ProjectInvitation.md) +- [ProjectInvitationEnvironmentsInner](docs/Model/ProjectInvitationEnvironmentsInner.md) +- [ProjectOptions](docs/Model/ProjectOptions.md) +- [ProjectOptionsDefaults](docs/Model/ProjectOptionsDefaults.md) +- [ProjectOptionsEnforced](docs/Model/ProjectOptionsEnforced.md) +- [ProjectPatch](docs/Model/ProjectPatch.md) +- [ProjectReference](docs/Model/ProjectReference.md) +- [ProjectSettings](docs/Model/ProjectSettings.md) +- [ProjectSettingsPatch](docs/Model/ProjectSettingsPatch.md) +- [ProjectStatus](docs/Model/ProjectStatus.md) +- [ProjectType](docs/Model/ProjectType.md) +- [ProjectVariable](docs/Model/ProjectVariable.md) +- [ProjectVariableCreateInput](docs/Model/ProjectVariableCreateInput.md) +- [ProjectVariablePatch](docs/Model/ProjectVariablePatch.md) +- [ProxyRoute](docs/Model/ProxyRoute.md) +- [RedirectConfiguration](docs/Model/RedirectConfiguration.md) +- [RedirectRoute](docs/Model/RedirectRoute.md) +- [Ref](docs/Model/Ref.md) +- [Region](docs/Model/Region.md) +- [RegionDatacenter](docs/Model/RegionDatacenter.md) +- [RegionEnvironmentalImpact](docs/Model/RegionEnvironmentalImpact.md) +- [RegionProvider](docs/Model/RegionProvider.md) +- [RegionReference](docs/Model/RegionReference.md) +- [ReplacementDomainStorage](docs/Model/ReplacementDomainStorage.md) +- [ReplacementDomainStorageCreateInput](docs/Model/ReplacementDomainStorageCreateInput.md) +- [ReplacementDomainStoragePatch](docs/Model/ReplacementDomainStoragePatch.md) +- [RepositoryInformation](docs/Model/RepositoryInformation.md) +- [RequestBuffering](docs/Model/RequestBuffering.md) +- [ResetEmailAddressRequest](docs/Model/ResetEmailAddressRequest.md) +- [ResourceConfig](docs/Model/ResourceConfig.md) +- [Resources](docs/Model/Resources.md) +- [Resources1](docs/Model/Resources1.md) +- [Resources2](docs/Model/Resources2.md) +- [Resources3](docs/Model/Resources3.md) +- [Resources4](docs/Model/Resources4.md) +- [Resources5](docs/Model/Resources5.md) +- [Resources6](docs/Model/Resources6.md) +- [ResourcesLimits](docs/Model/ResourcesLimits.md) +- [ResourcesOverridesValue](docs/Model/ResourcesOverridesValue.md) +- [Route](docs/Model/Route.md) +- [RouterResources](docs/Model/RouterResources.md) +- [RoutesValue](docs/Model/RoutesValue.md) +- [Routing](docs/Model/Routing.md) +- [Routing1](docs/Model/Routing1.md) +- [RuntimeOperations](docs/Model/RuntimeOperations.md) +- [SSIConfiguration](docs/Model/SSIConfiguration.md) +- [ScheduleInner](docs/Model/ScheduleInner.md) +- [Script](docs/Model/Script.md) +- [ScriptIntegration](docs/Model/ScriptIntegration.md) +- [ScriptIntegrationCreateInput](docs/Model/ScriptIntegrationCreateInput.md) +- [ScriptIntegrationPatch](docs/Model/ScriptIntegrationPatch.md) +- [SendOrgMfaReminders200ResponseValue](docs/Model/SendOrgMfaReminders200ResponseValue.md) +- [SendOrgMfaRemindersRequest](docs/Model/SendOrgMfaRemindersRequest.md) +- [ServiceRelationshipsValue](docs/Model/ServiceRelationshipsValue.md) +- [ServicesValue](docs/Model/ServicesValue.md) +- [ServicesValue1](docs/Model/ServicesValue1.md) +- [Sizing](docs/Model/Sizing.md) +- [SlackIntegration](docs/Model/SlackIntegration.md) +- [SlackIntegrationCreateInput](docs/Model/SlackIntegrationCreateInput.md) +- [SlackIntegrationPatch](docs/Model/SlackIntegrationPatch.md) +- [SourceCodeConfiguration](docs/Model/SourceCodeConfiguration.md) +- [SourceOperations](docs/Model/SourceOperations.md) +- [SourceOperationsValue](docs/Model/SourceOperationsValue.md) +- [SpecificOverridesValue](docs/Model/SpecificOverridesValue.md) +- [Splunk](docs/Model/Splunk.md) +- [SplunkIntegration](docs/Model/SplunkIntegration.md) +- [SplunkIntegrationCreateInput](docs/Model/SplunkIntegrationCreateInput.md) +- [SplunkIntegrationPatch](docs/Model/SplunkIntegrationPatch.md) +- [SshKey](docs/Model/SshKey.md) +- [Status](docs/Model/Status.md) +- [StickyConfiguration](docs/Model/StickyConfiguration.md) +- [StrictTransportSecurityOptions](docs/Model/StrictTransportSecurityOptions.md) +- [StringFilter](docs/Model/StringFilter.md) +- [Subscription](docs/Model/Subscription.md) +- [Subscription1](docs/Model/Subscription1.md) +- [SubscriptionAddonsObject](docs/Model/SubscriptionAddonsObject.md) +- [SubscriptionAddonsObjectAvailable](docs/Model/SubscriptionAddonsObjectAvailable.md) +- [SubscriptionAddonsObjectCurrent](docs/Model/SubscriptionAddonsObjectCurrent.md) +- [SubscriptionAddonsObjectUpgradesAvailable](docs/Model/SubscriptionAddonsObjectUpgradesAvailable.md) +- [SubscriptionCurrentUsageObject](docs/Model/SubscriptionCurrentUsageObject.md) +- [SubscriptionInformation](docs/Model/SubscriptionInformation.md) +- [SumoLogic](docs/Model/SumoLogic.md) +- [SumologicIntegration](docs/Model/SumologicIntegration.md) +- [SumologicIntegrationCreateInput](docs/Model/SumologicIntegrationCreateInput.md) +- [SumologicIntegrationPatch](docs/Model/SumologicIntegrationPatch.md) +- [Syslog](docs/Model/Syslog.md) +- [SyslogIntegration](docs/Model/SyslogIntegration.md) +- [SyslogIntegrationCreateInput](docs/Model/SyslogIntegrationCreateInput.md) +- [SyslogIntegrationPatch](docs/Model/SyslogIntegrationPatch.md) +- [SystemInformation](docs/Model/SystemInformation.md) +- [TLSSettings](docs/Model/TLSSettings.md) +- [Team](docs/Model/Team.md) +- [TeamCounts](docs/Model/TeamCounts.md) +- [TeamMember](docs/Model/TeamMember.md) +- [TeamProjectAccess](docs/Model/TeamProjectAccess.md) +- [TeamProjectAccessLinks](docs/Model/TeamProjectAccessLinks.md) +- [TeamProjectAccessLinksDelete](docs/Model/TeamProjectAccessLinksDelete.md) +- [TeamProjectAccessLinksSelf](docs/Model/TeamProjectAccessLinksSelf.md) +- [TeamProjectAccessLinksUpdate](docs/Model/TeamProjectAccessLinksUpdate.md) +- [TeamReference](docs/Model/TeamReference.md) +- [Ticket](docs/Model/Ticket.md) +- [TicketJiraInner](docs/Model/TicketJiraInner.md) +- [Tree](docs/Model/Tree.md) +- [TreeItemsInner](docs/Model/TreeItemsInner.md) +- [UpdateOrgAddonsRequest](docs/Model/UpdateOrgAddonsRequest.md) +- [UpdateOrgBillingAlertConfigRequest](docs/Model/UpdateOrgBillingAlertConfigRequest.md) +- [UpdateOrgBillingAlertConfigRequestConfig](docs/Model/UpdateOrgBillingAlertConfigRequestConfig.md) +- [UpdateOrgMemberRequest](docs/Model/UpdateOrgMemberRequest.md) +- [UpdateOrgProfileRequest](docs/Model/UpdateOrgProfileRequest.md) +- [UpdateOrgProjectRequest](docs/Model/UpdateOrgProjectRequest.md) +- [UpdateOrgRequest](docs/Model/UpdateOrgRequest.md) +- [UpdateOrgSubscriptionRequest](docs/Model/UpdateOrgSubscriptionRequest.md) +- [UpdateProfileRequest](docs/Model/UpdateProfileRequest.md) +- [UpdateProjectUserAccessRequest](docs/Model/UpdateProjectUserAccessRequest.md) +- [UpdateProjectsEnvironmentsDeploymentsNextRequest](docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.md) +- [UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue](docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.md) +- [UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue](docs/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.md) +- [UpdateSubscriptionUsageAlertsRequest](docs/Model/UpdateSubscriptionUsageAlertsRequest.md) +- [UpdateSubscriptionUsageAlertsRequestAlertsInner](docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.md) +- [UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig](docs/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.md) +- [UpdateTeamRequest](docs/Model/UpdateTeamRequest.md) +- [UpdateTicketRequest](docs/Model/UpdateTicketRequest.md) +- [UpdateUsageAlertsRequest](docs/Model/UpdateUsageAlertsRequest.md) +- [UpdateUserRequest](docs/Model/UpdateUserRequest.md) +- [UpstreamConfiguration](docs/Model/UpstreamConfiguration.md) +- [UpstreamRoute](docs/Model/UpstreamRoute.md) +- [Usage](docs/Model/Usage.md) +- [UsageAlert](docs/Model/UsageAlert.md) +- [UsageAlertConfig](docs/Model/UsageAlertConfig.md) +- [UsageAlertConfigThreshold](docs/Model/UsageAlertConfigThreshold.md) +- [UsageGroupCurrentUsageProperties](docs/Model/UsageGroupCurrentUsageProperties.md) +- [User](docs/Model/User.md) +- [UserProjectAccess](docs/Model/UserProjectAccess.md) +- [UserReference](docs/Model/UserReference.md) +- [VPNConfiguration](docs/Model/VPNConfiguration.md) +- [VerifyPhoneNumber200Response](docs/Model/VerifyPhoneNumber200Response.md) +- [VerifyPhoneNumberRequest](docs/Model/VerifyPhoneNumberRequest.md) +- [Version](docs/Model/Version.md) +- [VersionCreateInput](docs/Model/VersionCreateInput.md) +- [VersionPatch](docs/Model/VersionPatch.md) +- [Vouchers](docs/Model/Vouchers.md) +- [VouchersLinks](docs/Model/VouchersLinks.md) +- [VouchersLinksSelf](docs/Model/VouchersLinksSelf.md) +- [VouchersVouchersInner](docs/Model/VouchersVouchersInner.md) +- [VouchersVouchersInnerOrdersInner](docs/Model/VouchersVouchersInnerOrdersInner.md) +- [WebApplicationsValue](docs/Model/WebApplicationsValue.md) +- [WebConfiguration](docs/Model/WebConfiguration.md) +- [WebHookIntegration](docs/Model/WebHookIntegration.md) +- [WebHookIntegrationCreateInput](docs/Model/WebHookIntegrationCreateInput.md) +- [WebHookIntegrationPatch](docs/Model/WebHookIntegrationPatch.md) +- [WebLocationsValue](docs/Model/WebLocationsValue.md) +- [Webhook](docs/Model/Webhook.md) +- [WorkerConfiguration](docs/Model/WorkerConfiguration.md) +- [WorkersValue](docs/Model/WorkersValue.md) + +## Authorization + +Authentication schemes defined for the API: + ### OAuth2 + + - **Type**: `OAuth` + - **Flow**: `accessCode` + - **Authorization URL**: `https://auth.api.platform.sh/oauth2/authorize` + - **Scopes**: N/A + + ### OAuth2Admin + + - **Type**: `OAuth` + - **Flow**: `application` + - **Authorization URL**: `` + - **Scopes**: + - **admin**: administrative operations + diff --git a/src/Api/AbstractApi.php b/src/Api/AbstractApi.php index 6d0cd6a6..e9b01b54 100644 --- a/src/Api/AbstractApi.php +++ b/src/Api/AbstractApi.php @@ -30,8 +30,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ abstract class AbstractApi { private readonly StreamFactoryInterface $streamFactory; diff --git a/src/Api/AddOnsApi.php b/src/Api/AddOnsApi.php index a582cc9b..207896c0 100644 --- a/src/Api/AddOnsApi.php +++ b/src/Api/AddOnsApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddOnsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/AlertsApi.php b/src/Api/AlertsApi.php index f43581e9..c99a7029 100644 --- a/src/Api/AlertsApi.php +++ b/src/Api/AlertsApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AlertsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ApiConfiguration.php b/src/Api/ApiConfiguration.php index 398987a3..7ee23b96 100644 --- a/src/Api/ApiConfiguration.php +++ b/src/Api/ApiConfiguration.php @@ -11,8 +11,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ final class ApiConfiguration { diff --git a/src/Api/ApiException.php b/src/Api/ApiException.php index f20f09fd..0b6135d5 100644 --- a/src/Api/ApiException.php +++ b/src/Api/ApiException.php @@ -14,8 +14,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ class ApiException extends RequestException { /** diff --git a/src/Api/ApiHeaderSelector.php b/src/Api/ApiHeaderSelector.php index a6ccf087..602b9567 100644 --- a/src/Api/ApiHeaderSelector.php +++ b/src/Api/ApiHeaderSelector.php @@ -8,8 +8,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ class ApiHeaderSelector { diff --git a/src/Api/ApiTokensApi.php b/src/Api/ApiTokensApi.php index 77ab6cb3..1574fb4d 100644 --- a/src/Api/ApiTokensApi.php +++ b/src/Api/ApiTokensApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ApiTokensApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/AutoscalingApi.php b/src/Api/AutoscalingApi.php index a006219f..724c1b4d 100644 --- a/src/Api/AutoscalingApi.php +++ b/src/Api/AutoscalingApi.php @@ -20,8 +20,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalingApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/CertManagementApi.php b/src/Api/CertManagementApi.php index 4efa4779..06293a73 100644 --- a/src/Api/CertManagementApi.php +++ b/src/Api/CertManagementApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertManagementApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/CertificateProvisionerApi.php b/src/Api/CertificateProvisionerApi.php index af5ecd4a..e5ecfc00 100644 --- a/src/Api/CertificateProvisionerApi.php +++ b/src/Api/CertificateProvisionerApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertificateProvisionerApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ConnectionsApi.php b/src/Api/ConnectionsApi.php index d21ee491..a12a4e42 100644 --- a/src/Api/ConnectionsApi.php +++ b/src/Api/ConnectionsApi.php @@ -20,8 +20,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ConnectionsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/DefaultApi.php b/src/Api/DefaultApi.php index 3e7d2ef1..41e53aba 100644 --- a/src/Api/DefaultApi.php +++ b/src/Api/DefaultApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DefaultApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/DeploymentApi.php b/src/Api/DeploymentApi.php index 8b4ffbe0..f743b98f 100644 --- a/src/Api/DeploymentApi.php +++ b/src/Api/DeploymentApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/DeploymentTargetApi.php b/src/Api/DeploymentTargetApi.php index a5c64268..b3a44af6 100644 --- a/src/Api/DeploymentTargetApi.php +++ b/src/Api/DeploymentTargetApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentTargetApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/DiscountsApi.php b/src/Api/DiscountsApi.php index 312e11eb..d2bfa1cc 100644 --- a/src/Api/DiscountsApi.php +++ b/src/Api/DiscountsApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiscountsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/DomainManagementApi.php b/src/Api/DomainManagementApi.php index 54af33a9..68a4be79 100644 --- a/src/Api/DomainManagementApi.php +++ b/src/Api/DomainManagementApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DomainManagementApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/EnvironmentActivityApi.php b/src/Api/EnvironmentActivityApi.php index d94ff171..49aad760 100644 --- a/src/Api/EnvironmentActivityApi.php +++ b/src/Api/EnvironmentActivityApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentActivityApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/EnvironmentApi.php b/src/Api/EnvironmentApi.php index a416cecc..51b043ea 100644 --- a/src/Api/EnvironmentApi.php +++ b/src/Api/EnvironmentApi.php @@ -31,8 +31,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/EnvironmentBackupsApi.php b/src/Api/EnvironmentBackupsApi.php index f92ad171..df1cc0e7 100644 --- a/src/Api/EnvironmentBackupsApi.php +++ b/src/Api/EnvironmentBackupsApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentBackupsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/EnvironmentTypeApi.php b/src/Api/EnvironmentTypeApi.php index b9dc4de0..3c80e509 100644 --- a/src/Api/EnvironmentTypeApi.php +++ b/src/Api/EnvironmentTypeApi.php @@ -20,8 +20,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentTypeApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/EnvironmentVariablesApi.php b/src/Api/EnvironmentVariablesApi.php index a53feffb..fd2b73f3 100644 --- a/src/Api/EnvironmentVariablesApi.php +++ b/src/Api/EnvironmentVariablesApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentVariablesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/GrantsApi.php b/src/Api/GrantsApi.php index 0884c191..54f1bfac 100644 --- a/src/Api/GrantsApi.php +++ b/src/Api/GrantsApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GrantsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/InvoicesApi.php b/src/Api/InvoicesApi.php index eb7afd06..f720c241 100644 --- a/src/Api/InvoicesApi.php +++ b/src/Api/InvoicesApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class InvoicesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/MfaApi.php b/src/Api/MfaApi.php index 09bce845..7e21ce22 100644 --- a/src/Api/MfaApi.php +++ b/src/Api/MfaApi.php @@ -24,8 +24,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MfaApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrdersApi.php b/src/Api/OrdersApi.php index d70b812e..1e4c096a 100644 --- a/src/Api/OrdersApi.php +++ b/src/Api/OrdersApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrdersApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrganizationInvitationsApi.php b/src/Api/OrganizationInvitationsApi.php index d6a4b9cd..49f60377 100644 --- a/src/Api/OrganizationInvitationsApi.php +++ b/src/Api/OrganizationInvitationsApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationInvitationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrganizationManagementApi.php b/src/Api/OrganizationManagementApi.php index d6687d56..949abcab 100644 --- a/src/Api/OrganizationManagementApi.php +++ b/src/Api/OrganizationManagementApi.php @@ -24,8 +24,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationManagementApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrganizationMembersApi.php b/src/Api/OrganizationMembersApi.php index 40a05649..67434ddd 100644 --- a/src/Api/OrganizationMembersApi.php +++ b/src/Api/OrganizationMembersApi.php @@ -25,8 +25,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMembersApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrganizationProjectsApi.php b/src/Api/OrganizationProjectsApi.php index 64fc3147..6fb95740 100644 --- a/src/Api/OrganizationProjectsApi.php +++ b/src/Api/OrganizationProjectsApi.php @@ -27,8 +27,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/OrganizationsApi.php b/src/Api/OrganizationsApi.php index 2b44e030..b21a9a42 100644 --- a/src/Api/OrganizationsApi.php +++ b/src/Api/OrganizationsApi.php @@ -28,8 +28,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/PhoneNumberApi.php b/src/Api/PhoneNumberApi.php index aeb2d279..590f3003 100644 --- a/src/Api/PhoneNumberApi.php +++ b/src/Api/PhoneNumberApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PhoneNumberApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProfilesApi.php b/src/Api/ProfilesApi.php index 0d9f6c1d..16c98b43 100644 --- a/src/Api/ProfilesApi.php +++ b/src/Api/ProfilesApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfilesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProjectActivityApi.php b/src/Api/ProjectActivityApi.php index 10e0d518..7c76c876 100644 --- a/src/Api/ProjectActivityApi.php +++ b/src/Api/ProjectActivityApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectActivityApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProjectApi.php b/src/Api/ProjectApi.php index d97c7c99..38a44325 100644 --- a/src/Api/ProjectApi.php +++ b/src/Api/ProjectApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProjectInvitationsApi.php b/src/Api/ProjectInvitationsApi.php index def3c63e..d06cf8da 100644 --- a/src/Api/ProjectInvitationsApi.php +++ b/src/Api/ProjectInvitationsApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectInvitationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProjectSettingsApi.php b/src/Api/ProjectSettingsApi.php index 83c59ea3..e582d534 100644 --- a/src/Api/ProjectSettingsApi.php +++ b/src/Api/ProjectSettingsApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectSettingsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ProjectVariablesApi.php b/src/Api/ProjectVariablesApi.php index a5f19c78..aaa8869a 100644 --- a/src/Api/ProjectVariablesApi.php +++ b/src/Api/ProjectVariablesApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectVariablesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/RecordsApi.php b/src/Api/RecordsApi.php index 86a81624..4c86d887 100644 --- a/src/Api/RecordsApi.php +++ b/src/Api/RecordsApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RecordsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ReferencesApi.php b/src/Api/ReferencesApi.php index b05b1d0f..f393640a 100644 --- a/src/Api/ReferencesApi.php +++ b/src/Api/ReferencesApi.php @@ -25,8 +25,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ReferencesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/RegionsApi.php b/src/Api/RegionsApi.php index d67084c7..d7ee9065 100644 --- a/src/Api/RegionsApi.php +++ b/src/Api/RegionsApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RegionsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/RepositoryApi.php b/src/Api/RepositoryApi.php index a7ec6c93..ea86a355 100644 --- a/src/Api/RepositoryApi.php +++ b/src/Api/RepositoryApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RepositoryApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/RoutingApi.php b/src/Api/RoutingApi.php index 9056c1c1..8badc066 100644 --- a/src/Api/RoutingApi.php +++ b/src/Api/RoutingApi.php @@ -20,8 +20,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RoutingApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/RuntimeOperationsApi.php b/src/Api/RuntimeOperationsApi.php index bc75c5ad..507ca6a6 100644 --- a/src/Api/RuntimeOperationsApi.php +++ b/src/Api/RuntimeOperationsApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RuntimeOperationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/Serializer/ApiObjectAttributesMapper.php b/src/Api/Serializer/ApiObjectAttributesMapper.php index d305b146..78426e95 100644 --- a/src/Api/Serializer/ApiObjectAttributesMapper.php +++ b/src/Api/Serializer/ApiObjectAttributesMapper.php @@ -532,8 +532,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ final class ApiObjectAttributesMapper { diff --git a/src/Api/Serializer/ApiObjectFormatsMapper.php b/src/Api/Serializer/ApiObjectFormatsMapper.php index 18810286..5706885a 100644 --- a/src/Api/Serializer/ApiObjectFormatsMapper.php +++ b/src/Api/Serializer/ApiObjectFormatsMapper.php @@ -532,8 +532,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ final class ApiObjectFormatsMapper { diff --git a/src/Api/Serializer/ApiObjectTypesMapper.php b/src/Api/Serializer/ApiObjectTypesMapper.php index bb0ce02b..8248faed 100644 --- a/src/Api/Serializer/ApiObjectTypesMapper.php +++ b/src/Api/Serializer/ApiObjectTypesMapper.php @@ -532,8 +532,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ final class ApiObjectTypesMapper { diff --git a/src/Api/Serializer/ObjectSerializer.php b/src/Api/Serializer/ObjectSerializer.php index 29078e6b..d0415c90 100644 --- a/src/Api/Serializer/ObjectSerializer.php +++ b/src/Api/Serializer/ObjectSerializer.php @@ -20,8 +20,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - * @internal + * @generated This file was generated by OpenAPI Generator. Do not edit manually. * @internal */ class ObjectSerializer { diff --git a/src/Api/SourceOperationsApi.php b/src/Api/SourceOperationsApi.php index 3aa0be19..b3a73877 100644 --- a/src/Api/SourceOperationsApi.php +++ b/src/Api/SourceOperationsApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SourceOperationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/SshKeysApi.php b/src/Api/SshKeysApi.php index 507c07b2..3abddce7 100644 --- a/src/Api/SshKeysApi.php +++ b/src/Api/SshKeysApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SshKeysApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/SubscriptionsApi.php b/src/Api/SubscriptionsApi.php index 69df051d..3fc63287 100644 --- a/src/Api/SubscriptionsApi.php +++ b/src/Api/SubscriptionsApi.php @@ -33,8 +33,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/SupportApi.php b/src/Api/SupportApi.php index 8bf11c6e..12a6eeb5 100644 --- a/src/Api/SupportApi.php +++ b/src/Api/SupportApi.php @@ -25,8 +25,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SupportApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/SystemInformationApi.php b/src/Api/SystemInformationApi.php index ad9288a1..4f3c29c2 100644 --- a/src/Api/SystemInformationApi.php +++ b/src/Api/SystemInformationApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SystemInformationApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/TeamAccessApi.php b/src/Api/TeamAccessApi.php index 374fdda2..6867b151 100644 --- a/src/Api/TeamAccessApi.php +++ b/src/Api/TeamAccessApi.php @@ -22,8 +22,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamAccessApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/TeamsApi.php b/src/Api/TeamsApi.php index 862d0681..d19914be 100644 --- a/src/Api/TeamsApi.php +++ b/src/Api/TeamsApi.php @@ -29,8 +29,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/ThirdPartyIntegrationsApi.php b/src/Api/ThirdPartyIntegrationsApi.php index 931af3ac..4b20b89a 100644 --- a/src/Api/ThirdPartyIntegrationsApi.php +++ b/src/Api/ThirdPartyIntegrationsApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ThirdPartyIntegrationsApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/UserAccessApi.php b/src/Api/UserAccessApi.php index 94daefc9..27445e53 100644 --- a/src/Api/UserAccessApi.php +++ b/src/Api/UserAccessApi.php @@ -23,8 +23,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UserAccessApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/UserProfilesApi.php b/src/Api/UserProfilesApi.php index 68b88a48..de7ccdfc 100644 --- a/src/Api/UserProfilesApi.php +++ b/src/Api/UserProfilesApi.php @@ -26,8 +26,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UserProfilesApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/UsersApi.php b/src/Api/UsersApi.php index 036b9e02..a4bdd316 100644 --- a/src/Api/UsersApi.php +++ b/src/Api/UsersApi.php @@ -25,8 +25,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UsersApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Api/VouchersApi.php b/src/Api/VouchersApi.php index c243c4c4..0a31179a 100644 --- a/src/Api/VouchersApi.php +++ b/src/Api/VouchersApi.php @@ -21,8 +21,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VouchersApi extends AbstractApi { private readonly ApiHeaderSelector $headerSelector; diff --git a/src/Core/OAuthProvider.php b/src/Core/OAuthProvider.php index 26dcfc89..bbfde989 100644 --- a/src/Core/OAuthProvider.php +++ b/src/Core/OAuthProvider.php @@ -14,8 +14,7 @@ * @author Upsun Advocacy Team * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ class OAuthProvider { private ?string $accessToken = null; diff --git a/src/FormDataProcessor.php b/src/FormDataProcessor.php new file mode 100644 index 00000000..a50a5e78 --- /dev/null +++ b/src/FormDataProcessor.php @@ -0,0 +1,248 @@ + curl -u platform-api-user: \\ -d 'grant_type=api_token&api_token=API_TOKEN' \\ https://auth.upsun.com/oauth2/token This will return a \"Bearer\" access token that can be used to authenticate further API requests, for example:
 {     \"access_token\": \"abcdefghij1234567890\",     \"expires_in\": 900,     \"token_type\": \"bearer\" } 
### Using the Access Token To authenticate further API requests, include this returned bearer token in the `Authorization` header. For example, to retrieve a list of [Projects](#tag/Project) accessible by the current user, you can make the following request (substituting the dummy token for your own):
 curl -H \"Authorization: Bearer abcdefghij1234567890\" \\     https://api.upsun.com/projects 
# HAL Links Most endpoints in the API return fields which defines a HAL (Hypertext Application Language) schema for the requested endpoint. The particular objects returns and their contents can vary by endpoint. The payload examples we give here for the requests do not show these elements. These links can allow you to create a fully dynamic API client that does not need to hardcode any method or schema. Unless they are used for pagination we do not show the HAL links in the payload examples in this documentation for brevity and as their content is contextual (based on the permissions of the user). ## _links Objects Most endpoints that respond to `GET` requests will include a `_links` object in their response. The `_links` object contains a key-object pair labelled `self`, which defines two further key-value pairs: * `href` - A URL string referring to the fully qualified name of the returned object. For many endpoints, this will be the direct link to the API endpoint on the region gateway, rather than on the general API gateway. This means it may reference a host of, for example, `eu-2.platform.sh` rather than `api.upsun.com`. * `meta` - An object defining the OpenAPI Specification (OAS) [schema object](https://swagger.io/specification/#schemaObject) of the component returned by the endpoint. There may be zero or more other fields in the `_links` object resembling fragment identifiers beginning with a hash mark, e.g. `#edit` or `#delete`. Each of these keys refers to a JSON object containing two key-value pairs: * `href` - A URL string referring to the path name of endpoint which can perform the action named in the key. * `meta` - An object defining the OAS schema of the endpoint. This consists of a key-value pair, with the key defining an HTTP method and the value defining the [operation object](https://swagger.io/specification/#operationObject) of the endpoint. To use one of these HAL links, you must send a new request to the URL defined in the `href` field which contains a body defined the schema object in the `meta` field. For example, if you make a request such as `GET /projects/abcdefghij1234567890`, the `_links` object in the returned response will include the key `#delete`. That object will look something like this fragment: ``` \"#delete\": { \"href\": \"/api/projects/abcdefghij1234567890\", \"meta\": { \"delete\": { \"responses\": { . . . // Response definition omitted for space }, \"parameters\": [] } } } ``` To use this information to delete a project, you would then send a `DELETE` request to the endpoint `https://api.upsun.com/api/projects/abcdefghij1234567890` with no body or parameters to delete the project that was originally requested. ## _embedded Objects Requests to endpoints which create or modify objects, such as `POST`, `PATCH`, or `DELETE` requests, will include an `_embedded` key in their response. The object represented by this key will contain the created or modified object. This object is identical to what would be returned by a subsequent `GET` request for the object referred to by the endpoint. + * + * The version of the OpenAPI document: 1.0 + * Generated by: https://openapi-generator.tech + * Generator version: 7.17.0 + */ + +/** + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +namespace Upsun; + +use ArrayAccess; +use DateTime; +use DateTimeInterface; +use GuzzleHttp\Psr7\Utils; +use Psr\Http\Message\StreamInterface; +use SplFileObject; +use Upsun\Model\ModelInterface; + +/** + * FormDataProcessor Class Doc Comment + * + * @category Class + * @package Upsun + * @author OpenAPI Generator team + * @link https://openapi-generator.tech + */ +class FormDataProcessor +{ + /** + * Tags whether payload passed to ::prepare() contains one or more + * SplFileObject or stream values. + */ + public bool $has_file = false; + + /** + * Take value and turn it into an array suitable for inclusion in + * the http body (form parameter). If it's a string, pass through unchanged + * If it's a datetime object, format it in ISO8601 + * + * @param array $values the value of the form parameter + * + * @return array [key => value] of formdata + */ + public function prepare(array $values): array + { + $this->has_file = false; + $result = []; + + foreach ($values as $k => $v) { + if ($v === null) { + continue; + } + + $result[$k] = $this->makeFormSafe($v); + } + + return $result; + } + + /** + * Flattens a multi-level array of data and generates a single-level array + * compatible with formdata - a single-level array where the keys use bracket + * notation to signify nested data. + * + * credit: https://github.com/FranBar1966/FlatPHP + */ + public static function flatten(array $source, string $start = ''): array + { + $opt = [ + 'prefix' => '[', + 'suffix' => ']', + 'suffix-end' => true, + 'prefix-list' => '[', + 'suffix-list' => ']', + 'suffix-list-end' => true, + ]; + + if ($start === '') { + $currentPrefix = ''; + $currentSuffix = ''; + $currentSuffixEnd = false; + } elseif (array_is_list($source)) { + $currentPrefix = $opt['prefix-list']; + $currentSuffix = $opt['suffix-list']; + $currentSuffixEnd = $opt['suffix-list-end']; + } else { + $currentPrefix = $opt['prefix']; + $currentSuffix = $opt['suffix']; + $currentSuffixEnd = $opt['suffix-end']; + } + + $currentName = $start; + $result = []; + + foreach ($source as $key => $val) { + $currentName .= $currentPrefix . $key; + + if (is_array($val) && !empty($val)) { + $currentName .= $currentSuffix; + $result += self::flatten($val, $currentName); + } else { + if ($currentSuffixEnd) { + $currentName .= $currentSuffix; + } + + if (is_resource($val)) { + $result[$currentName] = $val; + } else { + $result[$currentName] = ObjectSerializer::toString($val); + } + } + + $currentName = $start; + } + + return $result; + } + + /** + * formdata must be limited to scalars or arrays of scalar values, + * or a resource for a file upload. Here we iterate through all available + * data and identify how to handle each scenario + */ + protected function makeFormSafe($value) + { + if ($value instanceof SplFileObject) { + return $this->processFiles([$value])[0]; + } + + if (is_resource($value)) { + $this->has_file = true; + + return $value; + } + + if ($value instanceof ModelInterface) { + return $this->processModel($value); + } + + if (is_array($value) || (is_object($value) && !$value instanceof DateTimeInterface)) { + $data = []; + + foreach ($value as $k => $v) { + $data[$k] = $this->makeFormSafe($v); + } + + return $data; + } + + return ObjectSerializer::toString($value); + } + + /** + * We are able to handle nested ModelInterface. We do not simply call + * json_decode(json_encode()) because any given model may have binary data + * or other data that cannot be serialized to a JSON string + */ + protected function processModel(ModelInterface $model): array + { + $result = []; + + foreach ($model::openAPITypes() as $name => $type) { + $value = $model->offsetGet($name); + + if ($value === null) { + continue; + } + + if (strpos($type, '\SplFileObject') !== false) { + $file = is_array($value) ? $value : [$value]; + $result[$name] = $this->processFiles($file); + + continue; + } + + if ($value instanceof ModelInterface) { + $result[$name] = $this->processModel($value); + + continue; + } + + if (is_array($value) || is_object($value)) { + $result[$name] = $this->makeFormSafe($value); + + continue; + } + + $result[$name] = ObjectSerializer::toString($value); + } + + return $result; + } + + /** + * Handle file data + */ + protected function processFiles(array $files): array + { + $this->has_file = true; + + $result = []; + + foreach ($files as $i => $file) { + if (is_array($file)) { + $result[$i] = $this->processFiles($file); + + continue; + } + + if ($file instanceof StreamInterface) { + $result[$i] = $file; + + continue; + } + + if ($file instanceof SplFileObject) { + $result[$i] = $this->tryFopen($file); + } + } + + return $result; + } + + private function tryFopen(SplFileObject $file) + { + return Utils::tryFopen($file->getRealPath(), 'rb'); + } +} diff --git a/src/Model/AcceptedResponse.php b/src/Model/AcceptedResponse.php index 82230b5b..1b8ad3ab 100644 --- a/src/Model/AcceptedResponse.php +++ b/src/Model/AcceptedResponse.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AcceptedResponse implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AccessControlInner.php b/src/Model/AccessControlInner.php index 2e91f10c..e340d209 100644 --- a/src/Model/AccessControlInner.php +++ b/src/Model/AccessControlInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AccessControlInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Activity.php b/src/Model/Activity.php index c1df093d..5a226985 100644 --- a/src/Model/Activity.php +++ b/src/Model/Activity.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Activity implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AddonCredential.php b/src/Model/AddonCredential.php index e03ccc5b..7da2239f 100644 --- a/src/Model/AddonCredential.php +++ b/src/Model/AddonCredential.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddonCredential implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AddonCredential1.php b/src/Model/AddonCredential1.php index 055d0202..c08e7c4d 100644 --- a/src/Model/AddonCredential1.php +++ b/src/Model/AddonCredential1.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddonCredential1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Address.php b/src/Model/Address.php index 57c3eae1..450e9d23 100644 --- a/src/Model/Address.php +++ b/src/Model/Address.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Address implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AddressGrantsInner.php b/src/Model/AddressGrantsInner.php index 0ab96c5d..abe4e912 100644 --- a/src/Model/AddressGrantsInner.php +++ b/src/Model/AddressGrantsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddressGrantsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AddressMetadata.php b/src/Model/AddressMetadata.php index 912e67bc..a1dcafde 100644 --- a/src/Model/AddressMetadata.php +++ b/src/Model/AddressMetadata.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddressMetadata implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AddressMetadataMetadata.php b/src/Model/AddressMetadataMetadata.php index 4ed81677..5eb85ed8 100644 --- a/src/Model/AddressMetadataMetadata.php +++ b/src/Model/AddressMetadataMetadata.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AddressMetadataMetadata implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Alert.php b/src/Model/Alert.php index 629bbc90..773be8c8 100644 --- a/src/Model/Alert.php +++ b/src/Model/Alert.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Alert implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ApiToken.php b/src/Model/ApiToken.php index 9fe5b346..9d030e26 100644 --- a/src/Model/ApiToken.php +++ b/src/Model/ApiToken.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ApiToken implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ApplyOrgVoucherRequest.php b/src/Model/ApplyOrgVoucherRequest.php index 009d9312..75c5c7d9 100644 --- a/src/Model/ApplyOrgVoucherRequest.php +++ b/src/Model/ApplyOrgVoucherRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ApplyOrgVoucherRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ArrayFilter.php b/src/Model/ArrayFilter.php index 6dad9fcf..6a9239b9 100644 --- a/src/Model/ArrayFilter.php +++ b/src/Model/ArrayFilter.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ArrayFilter implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Author.php b/src/Model/Author.php index f8a4b65b..a87a813c 100644 --- a/src/Model/Author.php +++ b/src/Model/Author.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Author implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerCPUPressureTrigger.php b/src/Model/AutoscalerCPUPressureTrigger.php index 4af66f05..19932225 100644 --- a/src/Model/AutoscalerCPUPressureTrigger.php +++ b/src/Model/AutoscalerCPUPressureTrigger.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerCPUPressureTrigger implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerCPUResources.php b/src/Model/AutoscalerCPUResources.php index bab7f48f..8d005b2f 100644 --- a/src/Model/AutoscalerCPUResources.php +++ b/src/Model/AutoscalerCPUResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerCPUResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerCPUTrigger.php b/src/Model/AutoscalerCPUTrigger.php index ae7d2a0e..dc4ff90f 100644 --- a/src/Model/AutoscalerCPUTrigger.php +++ b/src/Model/AutoscalerCPUTrigger.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerCPUTrigger implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerCondition.php b/src/Model/AutoscalerCondition.php index c764db9d..a19962f3 100644 --- a/src/Model/AutoscalerCondition.php +++ b/src/Model/AutoscalerCondition.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerCondition implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerDuration.php b/src/Model/AutoscalerDuration.php index 19e741d8..36eda6e4 100644 --- a/src/Model/AutoscalerDuration.php +++ b/src/Model/AutoscalerDuration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerDuration implements JsonSerializable { /** diff --git a/src/Model/AutoscalerInstances.php b/src/Model/AutoscalerInstances.php index 0e0b82c6..eee3940b 100644 --- a/src/Model/AutoscalerInstances.php +++ b/src/Model/AutoscalerInstances.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerInstances implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerMemoryPressureTrigger.php b/src/Model/AutoscalerMemoryPressureTrigger.php index f949045c..a40af5fe 100644 --- a/src/Model/AutoscalerMemoryPressureTrigger.php +++ b/src/Model/AutoscalerMemoryPressureTrigger.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerMemoryPressureTrigger implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerMemoryResources.php b/src/Model/AutoscalerMemoryResources.php index d8365b5b..e4d75c91 100644 --- a/src/Model/AutoscalerMemoryResources.php +++ b/src/Model/AutoscalerMemoryResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerMemoryResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerMemoryTrigger.php b/src/Model/AutoscalerMemoryTrigger.php index 39a4ee31..1b99ee3b 100644 --- a/src/Model/AutoscalerMemoryTrigger.php +++ b/src/Model/AutoscalerMemoryTrigger.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerMemoryTrigger implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerResources.php b/src/Model/AutoscalerResources.php index dcb50ddc..95c055c9 100644 --- a/src/Model/AutoscalerResources.php +++ b/src/Model/AutoscalerResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerScalingCooldown.php b/src/Model/AutoscalerScalingCooldown.php index 31082568..bb9c7723 100644 --- a/src/Model/AutoscalerScalingCooldown.php +++ b/src/Model/AutoscalerScalingCooldown.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerScalingCooldown implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerScalingFactor.php b/src/Model/AutoscalerScalingFactor.php index 5f490918..28f46e0e 100644 --- a/src/Model/AutoscalerScalingFactor.php +++ b/src/Model/AutoscalerScalingFactor.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerScalingFactor implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerServiceSettings.php b/src/Model/AutoscalerServiceSettings.php index 6cdf55fd..a1bff0b4 100644 --- a/src/Model/AutoscalerServiceSettings.php +++ b/src/Model/AutoscalerServiceSettings.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerServiceSettings implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerSettings.php b/src/Model/AutoscalerSettings.php index 77294ab2..8f3d1618 100644 --- a/src/Model/AutoscalerSettings.php +++ b/src/Model/AutoscalerSettings.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerSettings implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/AutoscalerTriggers.php b/src/Model/AutoscalerTriggers.php index 16064afa..12b01343 100644 --- a/src/Model/AutoscalerTriggers.php +++ b/src/Model/AutoscalerTriggers.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class AutoscalerTriggers implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Autoscaling.php b/src/Model/Autoscaling.php index 588c9b3f..dc2f8f3f 100644 --- a/src/Model/Autoscaling.php +++ b/src/Model/Autoscaling.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Autoscaling implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Backup.php b/src/Model/Backup.php index 4aad8baf..ef58de1a 100644 --- a/src/Model/Backup.php +++ b/src/Model/Backup.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Backup implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Bitbucket.php b/src/Model/Bitbucket.php index ae294828..d1136466 100644 --- a/src/Model/Bitbucket.php +++ b/src/Model/Bitbucket.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Bitbucket implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketIntegration.php b/src/Model/BitbucketIntegration.php index 9792b6ed..ff0a56a2 100644 --- a/src/Model/BitbucketIntegration.php +++ b/src/Model/BitbucketIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketIntegrationCreateInput.php b/src/Model/BitbucketIntegrationCreateInput.php index 5f9d8965..5f06c1e4 100644 --- a/src/Model/BitbucketIntegrationCreateInput.php +++ b/src/Model/BitbucketIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketIntegrationPatch.php b/src/Model/BitbucketIntegrationPatch.php index 411956dc..2c63f93c 100644 --- a/src/Model/BitbucketIntegrationPatch.php +++ b/src/Model/BitbucketIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketServer.php b/src/Model/BitbucketServer.php index 1f880ad5..77314e03 100644 --- a/src/Model/BitbucketServer.php +++ b/src/Model/BitbucketServer.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketServer implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketServerIntegration.php b/src/Model/BitbucketServerIntegration.php index 05a363c3..10726063 100644 --- a/src/Model/BitbucketServerIntegration.php +++ b/src/Model/BitbucketServerIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketServerIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketServerIntegrationCreateInput.php b/src/Model/BitbucketServerIntegrationCreateInput.php index 5f68b2ca..ba5e2b54 100644 --- a/src/Model/BitbucketServerIntegrationCreateInput.php +++ b/src/Model/BitbucketServerIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketServerIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BitbucketServerIntegrationPatch.php b/src/Model/BitbucketServerIntegrationPatch.php index 8bec9bbb..41cc738d 100644 --- a/src/Model/BitbucketServerIntegrationPatch.php +++ b/src/Model/BitbucketServerIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BitbucketServerIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Blackfire.php b/src/Model/Blackfire.php index 63b7d326..50fe7c11 100644 --- a/src/Model/Blackfire.php +++ b/src/Model/Blackfire.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Blackfire implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BlackfireIntegration.php b/src/Model/BlackfireIntegration.php index 06ad29f0..f9f37554 100644 --- a/src/Model/BlackfireIntegration.php +++ b/src/Model/BlackfireIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BlackfireIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BlackfireIntegrationCreateInput.php b/src/Model/BlackfireIntegrationCreateInput.php index 03326f6f..39af0a00 100644 --- a/src/Model/BlackfireIntegrationCreateInput.php +++ b/src/Model/BlackfireIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BlackfireIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BlackfireIntegrationPatch.php b/src/Model/BlackfireIntegrationPatch.php index ca99c23c..e6212619 100644 --- a/src/Model/BlackfireIntegrationPatch.php +++ b/src/Model/BlackfireIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BlackfireIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Blob.php b/src/Model/Blob.php index 2c48e2a3..5943a705 100644 --- a/src/Model/Blob.php +++ b/src/Model/Blob.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Blob implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BuildCachesValue.php b/src/Model/BuildCachesValue.php index 3839fcc6..d6daade5 100644 --- a/src/Model/BuildCachesValue.php +++ b/src/Model/BuildCachesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BuildCachesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BuildConfiguration.php b/src/Model/BuildConfiguration.php index c449196d..7af44b96 100644 --- a/src/Model/BuildConfiguration.php +++ b/src/Model/BuildConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BuildConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BuildResources.php b/src/Model/BuildResources.php index 2c9e2ca2..af0ed2f3 100644 --- a/src/Model/BuildResources.php +++ b/src/Model/BuildResources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BuildResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BuildResources1.php b/src/Model/BuildResources1.php index e99db2bb..81fe80dc 100644 --- a/src/Model/BuildResources1.php +++ b/src/Model/BuildResources1.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BuildResources1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/BuildResources2.php b/src/Model/BuildResources2.php index 466ce742..69464750 100644 --- a/src/Model/BuildResources2.php +++ b/src/Model/BuildResources2.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class BuildResources2 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CacheConfiguration.php b/src/Model/CacheConfiguration.php index b6268c4b..a48b2de9 100644 --- a/src/Model/CacheConfiguration.php +++ b/src/Model/CacheConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CacheConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CanCreateNewOrgSubscription200Response.php b/src/Model/CanCreateNewOrgSubscription200Response.php index eaa93bee..a679a05b 100644 --- a/src/Model/CanCreateNewOrgSubscription200Response.php +++ b/src/Model/CanCreateNewOrgSubscription200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CanCreateNewOrgSubscription200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.php b/src/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.php index ebdd1e0f..94d3a990 100644 --- a/src/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.php +++ b/src/Model/CanCreateNewOrgSubscription200ResponseRequiredAction.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CanCreateNewOrgSubscription200ResponseRequiredAction implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CanUpdateSubscription200Response.php b/src/Model/CanUpdateSubscription200Response.php index df5986f7..b584ec8c 100644 --- a/src/Model/CanUpdateSubscription200Response.php +++ b/src/Model/CanUpdateSubscription200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CanUpdateSubscription200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Certificate.php b/src/Model/Certificate.php index 142fc4e9..d13b9c10 100644 --- a/src/Model/Certificate.php +++ b/src/Model/Certificate.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Certificate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CertificateCreateInput.php b/src/Model/CertificateCreateInput.php index 060c8346..0972a8da 100644 --- a/src/Model/CertificateCreateInput.php +++ b/src/Model/CertificateCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertificateCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CertificatePatch.php b/src/Model/CertificatePatch.php index d18beedb..5bf2f062 100644 --- a/src/Model/CertificatePatch.php +++ b/src/Model/CertificatePatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertificatePatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CertificateProvisioner.php b/src/Model/CertificateProvisioner.php index 944fa31b..3d73f958 100644 --- a/src/Model/CertificateProvisioner.php +++ b/src/Model/CertificateProvisioner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertificateProvisioner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CertificateProvisionerPatch.php b/src/Model/CertificateProvisionerPatch.php index dbbcf5e2..f1b9e40d 100644 --- a/src/Model/CertificateProvisionerPatch.php +++ b/src/Model/CertificateProvisionerPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CertificateProvisionerPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Commands.php b/src/Model/Commands.php index a4654ed2..9ccfeb70 100644 --- a/src/Model/Commands.php +++ b/src/Model/Commands.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Commands implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Commands1.php b/src/Model/Commands1.php index fa73ae81..13454743 100644 --- a/src/Model/Commands1.php +++ b/src/Model/Commands1.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Commands1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Commands2.php b/src/Model/Commands2.php index 8ba70d6c..ce05e2e6 100644 --- a/src/Model/Commands2.php +++ b/src/Model/Commands2.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Commands2 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CommandsInner.php b/src/Model/CommandsInner.php index 21bfd562..cf0d9055 100644 --- a/src/Model/CommandsInner.php +++ b/src/Model/CommandsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CommandsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Commit.php b/src/Model/Commit.php index c2719cf5..726bd37f 100644 --- a/src/Model/Commit.php +++ b/src/Model/Commit.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Commit implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Committer.php b/src/Model/Committer.php index b78039b0..032fb108 100644 --- a/src/Model/Committer.php +++ b/src/Model/Committer.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Committer implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Components.php b/src/Model/Components.php index 78b77f16..7fcb31b9 100644 --- a/src/Model/Components.php +++ b/src/Model/Components.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Components implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Config.php b/src/Model/Config.php index 92ec2905..45d45447 100644 --- a/src/Model/Config.php +++ b/src/Model/Config.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Config implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ConfirmPhoneNumberRequest.php b/src/Model/ConfirmPhoneNumberRequest.php index 54285b3b..e89378e8 100644 --- a/src/Model/ConfirmPhoneNumberRequest.php +++ b/src/Model/ConfirmPhoneNumberRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ConfirmPhoneNumberRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ConfirmTotpEnrollment200Response.php b/src/Model/ConfirmTotpEnrollment200Response.php index c5c3077f..a0e105e8 100644 --- a/src/Model/ConfirmTotpEnrollment200Response.php +++ b/src/Model/ConfirmTotpEnrollment200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ConfirmTotpEnrollment200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ConfirmTotpEnrollmentRequest.php b/src/Model/ConfirmTotpEnrollmentRequest.php index cd789dad..6c75129b 100644 --- a/src/Model/ConfirmTotpEnrollmentRequest.php +++ b/src/Model/ConfirmTotpEnrollmentRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ConfirmTotpEnrollmentRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Connection.php b/src/Model/Connection.php index 328b09c3..244d02b6 100644 --- a/src/Model/Connection.php +++ b/src/Model/Connection.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Connection implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ContainerProfilesValueValue.php b/src/Model/ContainerProfilesValueValue.php index 11713061..51cee197 100644 --- a/src/Model/ContainerProfilesValueValue.php +++ b/src/Model/ContainerProfilesValueValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ContainerProfilesValueValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ContinuousProfilingConfiguration.php b/src/Model/ContinuousProfilingConfiguration.php index a7bb73bd..5853677a 100644 --- a/src/Model/ContinuousProfilingConfiguration.php +++ b/src/Model/ContinuousProfilingConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ContinuousProfilingConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateApiTokenRequest.php b/src/Model/CreateApiTokenRequest.php index c989a339..62a706cb 100644 --- a/src/Model/CreateApiTokenRequest.php +++ b/src/Model/CreateApiTokenRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateApiTokenRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateAuthorizationCredentials200Response.php b/src/Model/CreateAuthorizationCredentials200Response.php index 0b326faa..5eb2667f 100644 --- a/src/Model/CreateAuthorizationCredentials200Response.php +++ b/src/Model/CreateAuthorizationCredentials200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateAuthorizationCredentials200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.php b/src/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.php index 51f35ace..b9ef74af 100644 --- a/src/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.php +++ b/src/Model/CreateAuthorizationCredentials200ResponseRedirectToUrl.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateAuthorizationCredentials200ResponseRedirectToUrl implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateOrgInviteRequest.php b/src/Model/CreateOrgInviteRequest.php index 6aa90271..221ed889 100644 --- a/src/Model/CreateOrgInviteRequest.php +++ b/src/Model/CreateOrgInviteRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateOrgInviteRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateOrgMemberRequest.php b/src/Model/CreateOrgMemberRequest.php index f46671a8..6497d991 100644 --- a/src/Model/CreateOrgMemberRequest.php +++ b/src/Model/CreateOrgMemberRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateOrgMemberRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateOrgProjectRequest.php b/src/Model/CreateOrgProjectRequest.php index 07b7296b..92fe7a68 100644 --- a/src/Model/CreateOrgProjectRequest.php +++ b/src/Model/CreateOrgProjectRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateOrgProjectRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateOrgRequest.php b/src/Model/CreateOrgRequest.php index 1df80fcc..98251c97 100644 --- a/src/Model/CreateOrgRequest.php +++ b/src/Model/CreateOrgRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateOrgRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateOrgSubscriptionRequest.php b/src/Model/CreateOrgSubscriptionRequest.php index e20fcfd5..4aef9f19 100644 --- a/src/Model/CreateOrgSubscriptionRequest.php +++ b/src/Model/CreateOrgSubscriptionRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateOrgSubscriptionRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateProfilePicture200Response.php b/src/Model/CreateProfilePicture200Response.php index 0cea9ae3..a1bf1119 100644 --- a/src/Model/CreateProfilePicture200Response.php +++ b/src/Model/CreateProfilePicture200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateProfilePicture200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateProjectInviteRequest.php b/src/Model/CreateProjectInviteRequest.php index a00ea0ec..410bd3f0 100644 --- a/src/Model/CreateProjectInviteRequest.php +++ b/src/Model/CreateProjectInviteRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateProjectInviteRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateProjectInviteRequestEnvironmentsInner.php b/src/Model/CreateProjectInviteRequestEnvironmentsInner.php index a0205f9c..72628261 100644 --- a/src/Model/CreateProjectInviteRequestEnvironmentsInner.php +++ b/src/Model/CreateProjectInviteRequestEnvironmentsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateProjectInviteRequestEnvironmentsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateProjectInviteRequestPermissionsInner.php b/src/Model/CreateProjectInviteRequestPermissionsInner.php index ad0b1652..be263052 100644 --- a/src/Model/CreateProjectInviteRequestPermissionsInner.php +++ b/src/Model/CreateProjectInviteRequestPermissionsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateProjectInviteRequestPermissionsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateSshKeyRequest.php b/src/Model/CreateSshKeyRequest.php index 2ecbb4d2..7163e3b5 100644 --- a/src/Model/CreateSshKeyRequest.php +++ b/src/Model/CreateSshKeyRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateSshKeyRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateTeamMemberRequest.php b/src/Model/CreateTeamMemberRequest.php index c28334b6..330dadf3 100644 --- a/src/Model/CreateTeamMemberRequest.php +++ b/src/Model/CreateTeamMemberRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateTeamMemberRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateTeamRequest.php b/src/Model/CreateTeamRequest.php index 8bf07c3e..1a2d28f7 100644 --- a/src/Model/CreateTeamRequest.php +++ b/src/Model/CreateTeamRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateTeamRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateTicketRequest.php b/src/Model/CreateTicketRequest.php index 6d295249..3982eb47 100644 --- a/src/Model/CreateTicketRequest.php +++ b/src/Model/CreateTicketRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateTicketRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CreateTicketRequestAttachmentsInner.php b/src/Model/CreateTicketRequestAttachmentsInner.php index 7830e5ef..cf1bac94 100644 --- a/src/Model/CreateTicketRequestAttachmentsInner.php +++ b/src/Model/CreateTicketRequestAttachmentsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CreateTicketRequestAttachmentsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CronsDeploymentState.php b/src/Model/CronsDeploymentState.php index 2452aa73..323d13b4 100644 --- a/src/Model/CronsDeploymentState.php +++ b/src/Model/CronsDeploymentState.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CronsDeploymentState implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CronsValue.php b/src/Model/CronsValue.php index 114cccca..aee353f8 100644 --- a/src/Model/CronsValue.php +++ b/src/Model/CronsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CronsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CurrencyAmount.php b/src/Model/CurrencyAmount.php index e2e03c24..198e5f3e 100644 --- a/src/Model/CurrencyAmount.php +++ b/src/Model/CurrencyAmount.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CurrencyAmount implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CurrencyAmountNullable.php b/src/Model/CurrencyAmountNullable.php index cdc52f76..6541effc 100644 --- a/src/Model/CurrencyAmountNullable.php +++ b/src/Model/CurrencyAmountNullable.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CurrencyAmountNullable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CurrentUser.php b/src/Model/CurrentUser.php index ff41b6e3..dc493730 100644 --- a/src/Model/CurrentUser.php +++ b/src/Model/CurrentUser.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CurrentUser implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CurrentUserCurrentTrialInner.php b/src/Model/CurrentUserCurrentTrialInner.php index b0fe960b..489c3b91 100644 --- a/src/Model/CurrentUserCurrentTrialInner.php +++ b/src/Model/CurrentUserCurrentTrialInner.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CurrentUserCurrentTrialInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CurrentUserProjectsInner.php b/src/Model/CurrentUserProjectsInner.php index a10567a8..455b0847 100644 --- a/src/Model/CurrentUserProjectsInner.php +++ b/src/Model/CurrentUserProjectsInner.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CurrentUserProjectsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/CustomDomains.php b/src/Model/CustomDomains.php index 8030faf0..47df78ee 100644 --- a/src/Model/CustomDomains.php +++ b/src/Model/CustomDomains.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class CustomDomains implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DataRetention.php b/src/Model/DataRetention.php index b86b195e..f2c525ff 100644 --- a/src/Model/DataRetention.php +++ b/src/Model/DataRetention.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DataRetention implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DataRetentionConfigurationValue.php b/src/Model/DataRetentionConfigurationValue.php index d5eb50ff..aacd7400 100644 --- a/src/Model/DataRetentionConfigurationValue.php +++ b/src/Model/DataRetentionConfigurationValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DataRetentionConfigurationValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DataRetentionConfigurationValue1.php b/src/Model/DataRetentionConfigurationValue1.php index a5c67132..95ac2d42 100644 --- a/src/Model/DataRetentionConfigurationValue1.php +++ b/src/Model/DataRetentionConfigurationValue1.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DataRetentionConfigurationValue1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DateTimeFilter.php b/src/Model/DateTimeFilter.php index ee2f077d..36d8c7db 100644 --- a/src/Model/DateTimeFilter.php +++ b/src/Model/DateTimeFilter.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DateTimeFilter implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DedicatedDeploymentTarget.php b/src/Model/DedicatedDeploymentTarget.php index debbb031..5682802a 100644 --- a/src/Model/DedicatedDeploymentTarget.php +++ b/src/Model/DedicatedDeploymentTarget.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DedicatedDeploymentTarget implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DedicatedDeploymentTargetCreateInput.php b/src/Model/DedicatedDeploymentTargetCreateInput.php index e97b630c..3c2b56ba 100644 --- a/src/Model/DedicatedDeploymentTargetCreateInput.php +++ b/src/Model/DedicatedDeploymentTargetCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DedicatedDeploymentTargetCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DedicatedDeploymentTargetPatch.php b/src/Model/DedicatedDeploymentTargetPatch.php index 46a258e6..410ff698 100644 --- a/src/Model/DedicatedDeploymentTargetPatch.php +++ b/src/Model/DedicatedDeploymentTargetPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DedicatedDeploymentTargetPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DefaultConfig.php b/src/Model/DefaultConfig.php index 0b9e6908..bb918ff1 100644 --- a/src/Model/DefaultConfig.php +++ b/src/Model/DefaultConfig.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DefaultConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DefaultConfig1.php b/src/Model/DefaultConfig1.php index da2384fd..f854c93e 100644 --- a/src/Model/DefaultConfig1.php +++ b/src/Model/DefaultConfig1.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DefaultConfig1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DefaultResources.php b/src/Model/DefaultResources.php index cbce05f1..f96d9178 100644 --- a/src/Model/DefaultResources.php +++ b/src/Model/DefaultResources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DefaultResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Deployment.php b/src/Model/Deployment.php index c1d6f3d9..7f15549e 100644 --- a/src/Model/Deployment.php +++ b/src/Model/Deployment.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Deployment implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DeploymentHostsInner.php b/src/Model/DeploymentHostsInner.php index 21a86e0f..58e79c5e 100644 --- a/src/Model/DeploymentHostsInner.php +++ b/src/Model/DeploymentHostsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentHostsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DeploymentState.php b/src/Model/DeploymentState.php index cb48c8e1..d486a144 100644 --- a/src/Model/DeploymentState.php +++ b/src/Model/DeploymentState.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentState implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DeploymentTarget.php b/src/Model/DeploymentTarget.php index b9000070..912970dd 100644 --- a/src/Model/DeploymentTarget.php +++ b/src/Model/DeploymentTarget.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentTarget implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DeploymentTargetCreateInput.php b/src/Model/DeploymentTargetCreateInput.php index 09f864e4..40410563 100644 --- a/src/Model/DeploymentTargetCreateInput.php +++ b/src/Model/DeploymentTargetCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentTargetCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DeploymentTargetPatch.php b/src/Model/DeploymentTargetPatch.php index 22802ab5..c1455f6f 100644 --- a/src/Model/DeploymentTargetPatch.php +++ b/src/Model/DeploymentTargetPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DeploymentTargetPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DevelopmentResources.php b/src/Model/DevelopmentResources.php index b61c5675..0a974507 100644 --- a/src/Model/DevelopmentResources.php +++ b/src/Model/DevelopmentResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DevelopmentResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Discount.php b/src/Model/Discount.php index 4bd01874..49b5573d 100644 --- a/src/Model/Discount.php +++ b/src/Model/Discount.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Discount implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DiscountCommitment.php b/src/Model/DiscountCommitment.php index 25e3ac5c..e702bb32 100644 --- a/src/Model/DiscountCommitment.php +++ b/src/Model/DiscountCommitment.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiscountCommitment implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DiscountCommitmentAmount.php b/src/Model/DiscountCommitmentAmount.php index 723f09d9..c4368100 100644 --- a/src/Model/DiscountCommitmentAmount.php +++ b/src/Model/DiscountCommitmentAmount.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiscountCommitmentAmount implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DiscountCommitmentNet.php b/src/Model/DiscountCommitmentNet.php index 9c770120..b7f87054 100644 --- a/src/Model/DiscountCommitmentNet.php +++ b/src/Model/DiscountCommitmentNet.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiscountCommitmentNet implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DiscountDiscount.php b/src/Model/DiscountDiscount.php index 0bbbeeaf..ae1bd044 100644 --- a/src/Model/DiscountDiscount.php +++ b/src/Model/DiscountDiscount.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiscountDiscount implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DiskResources.php b/src/Model/DiskResources.php index 17bb65c7..691816ae 100644 --- a/src/Model/DiskResources.php +++ b/src/Model/DiskResources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DiskResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DocrootsValue.php b/src/Model/DocrootsValue.php index e46a4c37..3a8fe8d8 100644 --- a/src/Model/DocrootsValue.php +++ b/src/Model/DocrootsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DocrootsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Domain.php b/src/Model/Domain.php index 8d8d4f66..542d4923 100644 --- a/src/Model/Domain.php +++ b/src/Model/Domain.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Domain implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DomainCreateInput.php b/src/Model/DomainCreateInput.php index 76685dd4..12deac66 100644 --- a/src/Model/DomainCreateInput.php +++ b/src/Model/DomainCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DomainCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/DomainPatch.php b/src/Model/DomainPatch.php index b1d6bebf..cc091bdf 100644 --- a/src/Model/DomainPatch.php +++ b/src/Model/DomainPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class DomainPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EmailIntegration.php b/src/Model/EmailIntegration.php index 616b07c5..18750089 100644 --- a/src/Model/EmailIntegration.php +++ b/src/Model/EmailIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EmailIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EmailIntegrationCreateInput.php b/src/Model/EmailIntegrationCreateInput.php index e751181f..f648e1ad 100644 --- a/src/Model/EmailIntegrationCreateInput.php +++ b/src/Model/EmailIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EmailIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EmailIntegrationPatch.php b/src/Model/EmailIntegrationPatch.php index 415080fb..59e9e625 100644 --- a/src/Model/EmailIntegrationPatch.php +++ b/src/Model/EmailIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EmailIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnterpriseDeploymentTarget.php b/src/Model/EnterpriseDeploymentTarget.php index cb9e134e..64e7fa62 100644 --- a/src/Model/EnterpriseDeploymentTarget.php +++ b/src/Model/EnterpriseDeploymentTarget.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnterpriseDeploymentTarget implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnterpriseDeploymentTargetCreateInput.php b/src/Model/EnterpriseDeploymentTargetCreateInput.php index 16fa496a..5d5a8204 100644 --- a/src/Model/EnterpriseDeploymentTargetCreateInput.php +++ b/src/Model/EnterpriseDeploymentTargetCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnterpriseDeploymentTargetCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnterpriseDeploymentTargetPatch.php b/src/Model/EnterpriseDeploymentTargetPatch.php index a7038b0b..b1727276 100644 --- a/src/Model/EnterpriseDeploymentTargetPatch.php +++ b/src/Model/EnterpriseDeploymentTargetPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnterpriseDeploymentTargetPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Environment.php b/src/Model/Environment.php index 0f96fddb..391cd7a8 100644 --- a/src/Model/Environment.php +++ b/src/Model/Environment.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Environment implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentActivateInput.php b/src/Model/EnvironmentActivateInput.php index 9dd53613..67cc1f4c 100644 --- a/src/Model/EnvironmentActivateInput.php +++ b/src/Model/EnvironmentActivateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentActivateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentBackupInput.php b/src/Model/EnvironmentBackupInput.php index 6ee662ed..ce0516f8 100644 --- a/src/Model/EnvironmentBackupInput.php +++ b/src/Model/EnvironmentBackupInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentBackupInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentBranchInput.php b/src/Model/EnvironmentBranchInput.php index 34837fc1..a48c61a8 100644 --- a/src/Model/EnvironmentBranchInput.php +++ b/src/Model/EnvironmentBranchInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentBranchInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentDeployInput.php b/src/Model/EnvironmentDeployInput.php index 645d7065..38b8e987 100644 --- a/src/Model/EnvironmentDeployInput.php +++ b/src/Model/EnvironmentDeployInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentDeployInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentInfo.php b/src/Model/EnvironmentInfo.php index 5f575fff..f8d21942 100644 --- a/src/Model/EnvironmentInfo.php +++ b/src/Model/EnvironmentInfo.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentInfo implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentInitializeInput.php b/src/Model/EnvironmentInitializeInput.php index c91510b1..654bda04 100644 --- a/src/Model/EnvironmentInitializeInput.php +++ b/src/Model/EnvironmentInitializeInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentInitializeInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentMergeInput.php b/src/Model/EnvironmentMergeInput.php index b709b3ab..96b5fb1b 100644 --- a/src/Model/EnvironmentMergeInput.php +++ b/src/Model/EnvironmentMergeInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentMergeInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentOperationInput.php b/src/Model/EnvironmentOperationInput.php index a5a8d12c..c9bc3720 100644 --- a/src/Model/EnvironmentOperationInput.php +++ b/src/Model/EnvironmentOperationInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentOperationInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentPatch.php b/src/Model/EnvironmentPatch.php index 04a8f0af..4a610544 100644 --- a/src/Model/EnvironmentPatch.php +++ b/src/Model/EnvironmentPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentRestoreInput.php b/src/Model/EnvironmentRestoreInput.php index 669ebd80..a614901e 100644 --- a/src/Model/EnvironmentRestoreInput.php +++ b/src/Model/EnvironmentRestoreInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentRestoreInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentSourceOperation.php b/src/Model/EnvironmentSourceOperation.php index e124a426..8d72dc00 100644 --- a/src/Model/EnvironmentSourceOperation.php +++ b/src/Model/EnvironmentSourceOperation.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentSourceOperation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentSourceOperationInput.php b/src/Model/EnvironmentSourceOperationInput.php index d26f6985..7bb8b380 100644 --- a/src/Model/EnvironmentSourceOperationInput.php +++ b/src/Model/EnvironmentSourceOperationInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentSourceOperationInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentSynchronizeInput.php b/src/Model/EnvironmentSynchronizeInput.php index c3901906..d247759e 100644 --- a/src/Model/EnvironmentSynchronizeInput.php +++ b/src/Model/EnvironmentSynchronizeInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentSynchronizeInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentType.php b/src/Model/EnvironmentType.php index 24b3c0a6..cac787f3 100644 --- a/src/Model/EnvironmentType.php +++ b/src/Model/EnvironmentType.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentType implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentVariable.php b/src/Model/EnvironmentVariable.php index 74c283d9..830040d1 100644 --- a/src/Model/EnvironmentVariable.php +++ b/src/Model/EnvironmentVariable.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentVariable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentVariableCreateInput.php b/src/Model/EnvironmentVariableCreateInput.php index 97295679..047d41e6 100644 --- a/src/Model/EnvironmentVariableCreateInput.php +++ b/src/Model/EnvironmentVariableCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentVariableCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentVariablePatch.php b/src/Model/EnvironmentVariablePatch.php index 53582838..e4d98555 100644 --- a/src/Model/EnvironmentVariablePatch.php +++ b/src/Model/EnvironmentVariablePatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentVariablePatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentVariablesInner.php b/src/Model/EnvironmentVariablesInner.php index f350a108..de03444e 100644 --- a/src/Model/EnvironmentVariablesInner.php +++ b/src/Model/EnvironmentVariablesInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentVariablesInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EnvironmentsCredentialsValue.php b/src/Model/EnvironmentsCredentialsValue.php index 476bf3a8..37ca1cf5 100644 --- a/src/Model/EnvironmentsCredentialsValue.php +++ b/src/Model/EnvironmentsCredentialsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EnvironmentsCredentialsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Error.php b/src/Model/Error.php index 45b9d357..57c4dda9 100644 --- a/src/Model/Error.php +++ b/src/Model/Error.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Error implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/EstimationObject.php b/src/Model/EstimationObject.php index 9ad85abb..79575866 100644 --- a/src/Model/EstimationObject.php +++ b/src/Model/EstimationObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class EstimationObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FastlyCDN.php b/src/Model/FastlyCDN.php index 79b73815..eb6fbc68 100644 --- a/src/Model/FastlyCDN.php +++ b/src/Model/FastlyCDN.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FastlyCDN implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FastlyIntegration.php b/src/Model/FastlyIntegration.php index b57fb17a..17c881e4 100644 --- a/src/Model/FastlyIntegration.php +++ b/src/Model/FastlyIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FastlyIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FastlyIntegrationCreateInput.php b/src/Model/FastlyIntegrationCreateInput.php index d70fb406..f388026c 100644 --- a/src/Model/FastlyIntegrationCreateInput.php +++ b/src/Model/FastlyIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FastlyIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FastlyIntegrationPatch.php b/src/Model/FastlyIntegrationPatch.php index 54b08814..7cbf8233 100644 --- a/src/Model/FastlyIntegrationPatch.php +++ b/src/Model/FastlyIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FastlyIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FilesInner.php b/src/Model/FilesInner.php index c76fd144..c4fb1205 100644 --- a/src/Model/FilesInner.php +++ b/src/Model/FilesInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FilesInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Firewall.php b/src/Model/Firewall.php index 3299d56c..3826fe4b 100644 --- a/src/Model/Firewall.php +++ b/src/Model/Firewall.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Firewall implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FoundationDeploymentTarget.php b/src/Model/FoundationDeploymentTarget.php index 0ac26afc..f9b20054 100644 --- a/src/Model/FoundationDeploymentTarget.php +++ b/src/Model/FoundationDeploymentTarget.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FoundationDeploymentTarget implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FoundationDeploymentTargetCreateInput.php b/src/Model/FoundationDeploymentTargetCreateInput.php index 9e2aa3c4..08871d80 100644 --- a/src/Model/FoundationDeploymentTargetCreateInput.php +++ b/src/Model/FoundationDeploymentTargetCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FoundationDeploymentTargetCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/FoundationDeploymentTargetPatch.php b/src/Model/FoundationDeploymentTargetPatch.php index 44aabac8..8a69b310 100644 --- a/src/Model/FoundationDeploymentTargetPatch.php +++ b/src/Model/FoundationDeploymentTargetPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class FoundationDeploymentTargetPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetAddress200Response.php b/src/Model/GetAddress200Response.php index 58aa7884..bd2bc97a 100644 --- a/src/Model/GetAddress200Response.php +++ b/src/Model/GetAddress200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetAddress200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetCurrentUserVerificationStatus200Response.php b/src/Model/GetCurrentUserVerificationStatus200Response.php index bee0f77f..065c81f2 100644 --- a/src/Model/GetCurrentUserVerificationStatus200Response.php +++ b/src/Model/GetCurrentUserVerificationStatus200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetCurrentUserVerificationStatus200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetCurrentUserVerificationStatusFull200Response.php b/src/Model/GetCurrentUserVerificationStatusFull200Response.php index c0fa1be8..9c2e733b 100644 --- a/src/Model/GetCurrentUserVerificationStatusFull200Response.php +++ b/src/Model/GetCurrentUserVerificationStatusFull200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetCurrentUserVerificationStatusFull200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetOrgPrepaymentInfo200Response.php b/src/Model/GetOrgPrepaymentInfo200Response.php index 512ee61e..aaec453a 100644 --- a/src/Model/GetOrgPrepaymentInfo200Response.php +++ b/src/Model/GetOrgPrepaymentInfo200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetOrgPrepaymentInfo200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetOrgPrepaymentInfo200ResponseLinks.php b/src/Model/GetOrgPrepaymentInfo200ResponseLinks.php index 97abbc3b..45c0c17a 100644 --- a/src/Model/GetOrgPrepaymentInfo200ResponseLinks.php +++ b/src/Model/GetOrgPrepaymentInfo200ResponseLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetOrgPrepaymentInfo200ResponseLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.php b/src/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.php index abd989e8..c0a3092a 100644 --- a/src/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.php +++ b/src/Model/GetOrgPrepaymentInfo200ResponseLinksSelf.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetOrgPrepaymentInfo200ResponseLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.php b/src/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.php index 0550a708..8f4be807 100644 --- a/src/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.php +++ b/src/Model/GetOrgPrepaymentInfo200ResponseLinksTransactions.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetOrgPrepaymentInfo200ResponseLinksTransactions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetSubscriptionUsageAlerts200Response.php b/src/Model/GetSubscriptionUsageAlerts200Response.php index 8157758d..6e69a930 100644 --- a/src/Model/GetSubscriptionUsageAlerts200Response.php +++ b/src/Model/GetSubscriptionUsageAlerts200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetSubscriptionUsageAlerts200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTotpEnrollment200Response.php b/src/Model/GetTotpEnrollment200Response.php index 55a14b46..96f086b1 100644 --- a/src/Model/GetTotpEnrollment200Response.php +++ b/src/Model/GetTotpEnrollment200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTotpEnrollment200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200Response.php b/src/Model/GetTypeAllowance200Response.php index 0ed56c54..490c4389 100644 --- a/src/Model/GetTypeAllowance200Response.php +++ b/src/Model/GetTypeAllowance200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrencies.php b/src/Model/GetTypeAllowance200ResponseCurrencies.php index cfa8fdc8..87fe0125 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrencies.php +++ b/src/Model/GetTypeAllowance200ResponseCurrencies.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrencies implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrenciesAUD.php b/src/Model/GetTypeAllowance200ResponseCurrenciesAUD.php index d523a602..9ce1fdc7 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrenciesAUD.php +++ b/src/Model/GetTypeAllowance200ResponseCurrenciesAUD.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrenciesAUD implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrenciesCAD.php b/src/Model/GetTypeAllowance200ResponseCurrenciesCAD.php index 81cdc20c..9e244f57 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrenciesCAD.php +++ b/src/Model/GetTypeAllowance200ResponseCurrenciesCAD.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrenciesCAD implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrenciesEUR.php b/src/Model/GetTypeAllowance200ResponseCurrenciesEUR.php index 2f1f1450..6d0007a8 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrenciesEUR.php +++ b/src/Model/GetTypeAllowance200ResponseCurrenciesEUR.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrenciesEUR implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrenciesGBP.php b/src/Model/GetTypeAllowance200ResponseCurrenciesGBP.php index cdeaa951..0dbe6311 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrenciesGBP.php +++ b/src/Model/GetTypeAllowance200ResponseCurrenciesGBP.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrenciesGBP implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetTypeAllowance200ResponseCurrenciesUSD.php b/src/Model/GetTypeAllowance200ResponseCurrenciesUSD.php index 1410be07..efa4a510 100644 --- a/src/Model/GetTypeAllowance200ResponseCurrenciesUSD.php +++ b/src/Model/GetTypeAllowance200ResponseCurrenciesUSD.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetTypeAllowance200ResponseCurrenciesUSD implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GetUsageAlerts200Response.php b/src/Model/GetUsageAlerts200Response.php index 554a56de..66de300d 100644 --- a/src/Model/GetUsageAlerts200Response.php +++ b/src/Model/GetUsageAlerts200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GetUsageAlerts200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitHub.php b/src/Model/GitHub.php index 209a0988..05ad0be8 100644 --- a/src/Model/GitHub.php +++ b/src/Model/GitHub.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitHub implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitLab.php b/src/Model/GitLab.php index 5c9b833d..007c8b91 100644 --- a/src/Model/GitLab.php +++ b/src/Model/GitLab.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitLab implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitLabIntegration.php b/src/Model/GitLabIntegration.php index b70f21f5..e314a63e 100644 --- a/src/Model/GitLabIntegration.php +++ b/src/Model/GitLabIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitLabIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitLabIntegrationCreateInput.php b/src/Model/GitLabIntegrationCreateInput.php index 464871ac..dfd27add 100644 --- a/src/Model/GitLabIntegrationCreateInput.php +++ b/src/Model/GitLabIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitLabIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitLabIntegrationPatch.php b/src/Model/GitLabIntegrationPatch.php index eef6e20a..558efd5e 100644 --- a/src/Model/GitLabIntegrationPatch.php +++ b/src/Model/GitLabIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitLabIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GitServerConfiguration.php b/src/Model/GitServerConfiguration.php index ff9c6365..d3627c1c 100644 --- a/src/Model/GitServerConfiguration.php +++ b/src/Model/GitServerConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GitServerConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GithubIntegration.php b/src/Model/GithubIntegration.php index a5b35371..b10c3b24 100644 --- a/src/Model/GithubIntegration.php +++ b/src/Model/GithubIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GithubIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GithubIntegrationCreateInput.php b/src/Model/GithubIntegrationCreateInput.php index e3227757..770c5377 100644 --- a/src/Model/GithubIntegrationCreateInput.php +++ b/src/Model/GithubIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GithubIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GithubIntegrationPatch.php b/src/Model/GithubIntegrationPatch.php index bca15c09..b90dc988 100644 --- a/src/Model/GithubIntegrationPatch.php +++ b/src/Model/GithubIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GithubIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GoogleSSOConfig.php b/src/Model/GoogleSSOConfig.php index 90a392c2..7786a62e 100644 --- a/src/Model/GoogleSSOConfig.php +++ b/src/Model/GoogleSSOConfig.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GoogleSSOConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GrantProjectTeamAccessRequestInner.php b/src/Model/GrantProjectTeamAccessRequestInner.php index f260be40..64ec7f1e 100644 --- a/src/Model/GrantProjectTeamAccessRequestInner.php +++ b/src/Model/GrantProjectTeamAccessRequestInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GrantProjectTeamAccessRequestInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GrantProjectUserAccessRequestInner.php b/src/Model/GrantProjectUserAccessRequestInner.php index d5bc5152..be4f21dd 100644 --- a/src/Model/GrantProjectUserAccessRequestInner.php +++ b/src/Model/GrantProjectUserAccessRequestInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GrantProjectUserAccessRequestInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GrantTeamProjectAccessRequestInner.php b/src/Model/GrantTeamProjectAccessRequestInner.php index 70595166..c44ca595 100644 --- a/src/Model/GrantTeamProjectAccessRequestInner.php +++ b/src/Model/GrantTeamProjectAccessRequestInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GrantTeamProjectAccessRequestInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GrantUserProjectAccessRequestInner.php b/src/Model/GrantUserProjectAccessRequestInner.php index 2cc05cf4..39c52b7d 100644 --- a/src/Model/GrantUserProjectAccessRequestInner.php +++ b/src/Model/GrantUserProjectAccessRequestInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GrantUserProjectAccessRequestInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/GuaranteedResources.php b/src/Model/GuaranteedResources.php index 8881b34c..ad61d99a 100644 --- a/src/Model/GuaranteedResources.php +++ b/src/Model/GuaranteedResources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class GuaranteedResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HTTPLogForwarding.php b/src/Model/HTTPLogForwarding.php index dc312c0d..519cb5f4 100644 --- a/src/Model/HTTPLogForwarding.php +++ b/src/Model/HTTPLogForwarding.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HTTPLogForwarding implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HalLinks.php b/src/Model/HalLinks.php index 316d36b3..7d206475 100644 --- a/src/Model/HalLinks.php +++ b/src/Model/HalLinks.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HalLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HalLinksNext.php b/src/Model/HalLinksNext.php index 8028ff8b..9ccfabfb 100644 --- a/src/Model/HalLinksNext.php +++ b/src/Model/HalLinksNext.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HalLinksNext implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HalLinksPrevious.php b/src/Model/HalLinksPrevious.php index 64f1db7d..ad0bc9d0 100644 --- a/src/Model/HalLinksPrevious.php +++ b/src/Model/HalLinksPrevious.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HalLinksPrevious implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HalLinksSelf.php b/src/Model/HalLinksSelf.php index c7dc1009..ab088d79 100644 --- a/src/Model/HalLinksSelf.php +++ b/src/Model/HalLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HalLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthEmail.php b/src/Model/HealthEmail.php index 946eb02b..4d349153 100644 --- a/src/Model/HealthEmail.php +++ b/src/Model/HealthEmail.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthEmail implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthPagerDuty.php b/src/Model/HealthPagerDuty.php index b974077c..69d7456e 100644 --- a/src/Model/HealthPagerDuty.php +++ b/src/Model/HealthPagerDuty.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthPagerDuty implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthSlack.php b/src/Model/HealthSlack.php index 0602673d..0bf94468 100644 --- a/src/Model/HealthSlack.php +++ b/src/Model/HealthSlack.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthSlack implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthWebHook.php b/src/Model/HealthWebHook.php index 891d3196..b02928e3 100644 --- a/src/Model/HealthWebHook.php +++ b/src/Model/HealthWebHook.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthWebHook implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthWebHookIntegration.php b/src/Model/HealthWebHookIntegration.php index a97c056c..e6515109 100644 --- a/src/Model/HealthWebHookIntegration.php +++ b/src/Model/HealthWebHookIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthWebHookIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthWebHookIntegrationCreateInput.php b/src/Model/HealthWebHookIntegrationCreateInput.php index d398a20e..7e9502c1 100644 --- a/src/Model/HealthWebHookIntegrationCreateInput.php +++ b/src/Model/HealthWebHookIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthWebHookIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HealthWebHookIntegrationPatch.php b/src/Model/HealthWebHookIntegrationPatch.php index aa78313d..2ed70144 100644 --- a/src/Model/HealthWebHookIntegrationPatch.php +++ b/src/Model/HealthWebHookIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HealthWebHookIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Hooks.php b/src/Model/Hooks.php index 5bf924fc..1c419e72 100644 --- a/src/Model/Hooks.php +++ b/src/Model/Hooks.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Hooks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HostsInner.php b/src/Model/HostsInner.php index fd31eddb..cdf75718 100644 --- a/src/Model/HostsInner.php +++ b/src/Model/HostsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HostsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpAccessPermissions.php b/src/Model/HttpAccessPermissions.php index ce1905dc..de6f67af 100644 --- a/src/Model/HttpAccessPermissions.php +++ b/src/Model/HttpAccessPermissions.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpAccessPermissions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpAccessPermissions1.php b/src/Model/HttpAccessPermissions1.php index 0d3dcfb4..6b006f40 100644 --- a/src/Model/HttpAccessPermissions1.php +++ b/src/Model/HttpAccessPermissions1.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpAccessPermissions1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpAccessPermissions2.php b/src/Model/HttpAccessPermissions2.php index 0822a125..c4cd3f23 100644 --- a/src/Model/HttpAccessPermissions2.php +++ b/src/Model/HttpAccessPermissions2.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpAccessPermissions2 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpLogIntegration.php b/src/Model/HttpLogIntegration.php index 6a407f5f..66bc5efb 100644 --- a/src/Model/HttpLogIntegration.php +++ b/src/Model/HttpLogIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpLogIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpLogIntegrationCreateInput.php b/src/Model/HttpLogIntegrationCreateInput.php index 8b77026b..58302915 100644 --- a/src/Model/HttpLogIntegrationCreateInput.php +++ b/src/Model/HttpLogIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpLogIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/HttpLogIntegrationPatch.php b/src/Model/HttpLogIntegrationPatch.php index 49e3dd8c..543cf0e7 100644 --- a/src/Model/HttpLogIntegrationPatch.php +++ b/src/Model/HttpLogIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class HttpLogIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ImageTypeRestrictions.php b/src/Model/ImageTypeRestrictions.php index d1eddd47..e9ade3cf 100644 --- a/src/Model/ImageTypeRestrictions.php +++ b/src/Model/ImageTypeRestrictions.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ImageTypeRestrictions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ImagesValueValue.php b/src/Model/ImagesValueValue.php index b6bea8ff..65d953d1 100644 --- a/src/Model/ImagesValueValue.php +++ b/src/Model/ImagesValueValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ImagesValueValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Integration.php b/src/Model/Integration.php index 999566de..4ecda3ef 100644 --- a/src/Model/Integration.php +++ b/src/Model/Integration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Integration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/IntegrationCreateInput.php b/src/Model/IntegrationCreateInput.php index 4aa46b7f..ac076132 100644 --- a/src/Model/IntegrationCreateInput.php +++ b/src/Model/IntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class IntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/IntegrationPatch.php b/src/Model/IntegrationPatch.php index 2bb2679f..32697cf1 100644 --- a/src/Model/IntegrationPatch.php +++ b/src/Model/IntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class IntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Integrations.php b/src/Model/Integrations.php index 34ccc386..82c5450b 100644 --- a/src/Model/Integrations.php +++ b/src/Model/Integrations.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Integrations implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Invoice.php b/src/Model/Invoice.php index b7fe5a36..b85abb8d 100644 --- a/src/Model/Invoice.php +++ b/src/Model/Invoice.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Invoice implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/InvoicePDF.php b/src/Model/InvoicePDF.php index 43716cf7..414dec06 100644 --- a/src/Model/InvoicePDF.php +++ b/src/Model/InvoicePDF.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class InvoicePDF implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/IssuerInner.php b/src/Model/IssuerInner.php index f8c8ef8e..212995ef 100644 --- a/src/Model/IssuerInner.php +++ b/src/Model/IssuerInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class IssuerInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/LineItem.php b/src/Model/LineItem.php index 96b675d6..87f64a57 100644 --- a/src/Model/LineItem.php +++ b/src/Model/LineItem.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class LineItem implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/LineItemComponent.php b/src/Model/LineItemComponent.php index 39eb63ab..fb7b5b05 100644 --- a/src/Model/LineItemComponent.php +++ b/src/Model/LineItemComponent.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class LineItemComponent implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Link.php b/src/Model/Link.php index f51dae9f..89eea847 100644 --- a/src/Model/Link.php +++ b/src/Model/Link.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Link implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListLinks.php b/src/Model/ListLinks.php index 0c7c6c28..852ce2f9 100644 --- a/src/Model/ListLinks.php +++ b/src/Model/ListLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgDiscounts200Response.php b/src/Model/ListOrgDiscounts200Response.php index 11e80fe7..35f9e844 100644 --- a/src/Model/ListOrgDiscounts200Response.php +++ b/src/Model/ListOrgDiscounts200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgDiscounts200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgInvoices200Response.php b/src/Model/ListOrgInvoices200Response.php index c3fe4cc5..665b3a14 100644 --- a/src/Model/ListOrgInvoices200Response.php +++ b/src/Model/ListOrgInvoices200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgInvoices200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgMembers200Response.php b/src/Model/ListOrgMembers200Response.php index 730628c5..9d1e2dd9 100644 --- a/src/Model/ListOrgMembers200Response.php +++ b/src/Model/ListOrgMembers200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgMembers200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgOrders200Response.php b/src/Model/ListOrgOrders200Response.php index 4dece475..4b54d5f0 100644 --- a/src/Model/ListOrgOrders200Response.php +++ b/src/Model/ListOrgOrders200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgOrders200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPlanRecords200Response.php b/src/Model/ListOrgPlanRecords200Response.php index 807eb83c..ed591e12 100644 --- a/src/Model/ListOrgPlanRecords200Response.php +++ b/src/Model/ListOrgPlanRecords200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPlanRecords200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200Response.php b/src/Model/ListOrgPrepaymentTransactions200Response.php index 3333a636..bebf7766 100644 --- a/src/Model/ListOrgPrepaymentTransactions200Response.php +++ b/src/Model/ListOrgPrepaymentTransactions200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200ResponseLinks.php b/src/Model/ListOrgPrepaymentTransactions200ResponseLinks.php index 6edfadc4..dfadfc8b 100644 --- a/src/Model/ListOrgPrepaymentTransactions200ResponseLinks.php +++ b/src/Model/ListOrgPrepaymentTransactions200ResponseLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200ResponseLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.php b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.php index e35631f9..cca571b0 100644 --- a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.php +++ b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksNext.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200ResponseLinksNext implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.php b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.php index 040f3be9..6edd891e 100644 --- a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.php +++ b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrepayment.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200ResponseLinksPrepayment implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.php b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.php index 231d7323..67e8ccd5 100644 --- a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.php +++ b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksPrevious.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200ResponseLinksPrevious implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.php b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.php index b10513cf..e926bda6 100644 --- a/src/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.php +++ b/src/Model/ListOrgPrepaymentTransactions200ResponseLinksSelf.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgPrepaymentTransactions200ResponseLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgProjects200Response.php b/src/Model/ListOrgProjects200Response.php index 3bd8eceb..4a709a3d 100644 --- a/src/Model/ListOrgProjects200Response.php +++ b/src/Model/ListOrgProjects200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgProjects200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgSubscriptions200Response.php b/src/Model/ListOrgSubscriptions200Response.php index c0f2894d..50245994 100644 --- a/src/Model/ListOrgSubscriptions200Response.php +++ b/src/Model/ListOrgSubscriptions200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgSubscriptions200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgUsageRecords200Response.php b/src/Model/ListOrgUsageRecords200Response.php index fac54b8f..a9e272ed 100644 --- a/src/Model/ListOrgUsageRecords200Response.php +++ b/src/Model/ListOrgUsageRecords200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgUsageRecords200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListOrgs200Response.php b/src/Model/ListOrgs200Response.php index e36d04c7..3fef698f 100644 --- a/src/Model/ListOrgs200Response.php +++ b/src/Model/ListOrgs200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListOrgs200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListProfiles200Response.php b/src/Model/ListProfiles200Response.php index 1d529edc..0e5332c8 100644 --- a/src/Model/ListProfiles200Response.php +++ b/src/Model/ListProfiles200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListProfiles200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListProjectTeamAccess200Response.php b/src/Model/ListProjectTeamAccess200Response.php index 7437936b..346e1c4c 100644 --- a/src/Model/ListProjectTeamAccess200Response.php +++ b/src/Model/ListProjectTeamAccess200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListProjectTeamAccess200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListProjectUserAccess200Response.php b/src/Model/ListProjectUserAccess200Response.php index d802571f..f7e1b7e2 100644 --- a/src/Model/ListProjectUserAccess200Response.php +++ b/src/Model/ListProjectUserAccess200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListProjectUserAccess200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListRegions200Response.php b/src/Model/ListRegions200Response.php index a06b37c0..b8594175 100644 --- a/src/Model/ListRegions200Response.php +++ b/src/Model/ListRegions200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListRegions200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListTeamMembers200Response.php b/src/Model/ListTeamMembers200Response.php index 2ce4bdb5..1daab741 100644 --- a/src/Model/ListTeamMembers200Response.php +++ b/src/Model/ListTeamMembers200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListTeamMembers200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListTeams200Response.php b/src/Model/ListTeams200Response.php index 27c03e1a..fcb4dd4f 100644 --- a/src/Model/ListTeams200Response.php +++ b/src/Model/ListTeams200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListTeams200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListTicketCategories200ResponseInner.php b/src/Model/ListTicketCategories200ResponseInner.php index 0184e9ab..c5d03ed8 100644 --- a/src/Model/ListTicketCategories200ResponseInner.php +++ b/src/Model/ListTicketCategories200ResponseInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListTicketCategories200ResponseInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListTicketPriorities200ResponseInner.php b/src/Model/ListTicketPriorities200ResponseInner.php index 92ec4182..a203b357 100644 --- a/src/Model/ListTicketPriorities200ResponseInner.php +++ b/src/Model/ListTicketPriorities200ResponseInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListTicketPriorities200ResponseInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListTickets200Response.php b/src/Model/ListTickets200Response.php index b80b58c1..0205da08 100644 --- a/src/Model/ListTickets200Response.php +++ b/src/Model/ListTickets200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListTickets200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListUserExtendedAccess200Response.php b/src/Model/ListUserExtendedAccess200Response.php index c652bd07..d09e1468 100644 --- a/src/Model/ListUserExtendedAccess200Response.php +++ b/src/Model/ListUserExtendedAccess200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListUserExtendedAccess200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListUserExtendedAccess200ResponseItemsInner.php b/src/Model/ListUserExtendedAccess200ResponseItemsInner.php index 550dc9e1..1d928bfc 100644 --- a/src/Model/ListUserExtendedAccess200ResponseItemsInner.php +++ b/src/Model/ListUserExtendedAccess200ResponseItemsInner.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListUserExtendedAccess200ResponseItemsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ListUserOrgs200Response.php b/src/Model/ListUserOrgs200Response.php index 3eb2c8c2..6569437a 100644 --- a/src/Model/ListUserOrgs200Response.php +++ b/src/Model/ListUserOrgs200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ListUserOrgs200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/LogsForwarding.php b/src/Model/LogsForwarding.php index 33fd72bd..d4e58dbb 100644 --- a/src/Model/LogsForwarding.php +++ b/src/Model/LogsForwarding.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class LogsForwarding implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/MergeInfo.php b/src/Model/MergeInfo.php index db005fc9..5290de3b 100644 --- a/src/Model/MergeInfo.php +++ b/src/Model/MergeInfo.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MergeInfo implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Metrics.php b/src/Model/Metrics.php index 98a9df2e..204a93ac 100644 --- a/src/Model/Metrics.php +++ b/src/Model/Metrics.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Metrics implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/MetricsMetadata.php b/src/Model/MetricsMetadata.php index 783caadb..20727691 100644 --- a/src/Model/MetricsMetadata.php +++ b/src/Model/MetricsMetadata.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MetricsMetadata implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/MetricsValue.php b/src/Model/MetricsValue.php index 812bca2d..9e043e13 100644 --- a/src/Model/MetricsValue.php +++ b/src/Model/MetricsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MetricsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/MinimumResources.php b/src/Model/MinimumResources.php index 6508ae58..111c89d3 100644 --- a/src/Model/MinimumResources.php +++ b/src/Model/MinimumResources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MinimumResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Model.php b/src/Model/Model.php index dfd14639..a4684c3f 100644 --- a/src/Model/Model.php +++ b/src/Model/Model.php @@ -8,8 +8,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ interface Model { /** diff --git a/src/Model/MountsValue.php b/src/Model/MountsValue.php index 43c46be0..1e8256b0 100644 --- a/src/Model/MountsValue.php +++ b/src/Model/MountsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class MountsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/NewRelic.php b/src/Model/NewRelic.php index 114bcaf3..b60d60af 100644 --- a/src/Model/NewRelic.php +++ b/src/Model/NewRelic.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class NewRelic implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/NewRelicIntegration.php b/src/Model/NewRelicIntegration.php index 65c07e85..a0a367ba 100644 --- a/src/Model/NewRelicIntegration.php +++ b/src/Model/NewRelicIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class NewRelicIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/NewRelicIntegrationCreateInput.php b/src/Model/NewRelicIntegrationCreateInput.php index dea05de3..42b1d51d 100644 --- a/src/Model/NewRelicIntegrationCreateInput.php +++ b/src/Model/NewRelicIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class NewRelicIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/NewRelicIntegrationPatch.php b/src/Model/NewRelicIntegrationPatch.php index 3dadebf2..db9ffb18 100644 --- a/src/Model/NewRelicIntegrationPatch.php +++ b/src/Model/NewRelicIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class NewRelicIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OAuth2Consumer.php b/src/Model/OAuth2Consumer.php index 03c48f97..bbad9dd0 100644 --- a/src/Model/OAuth2Consumer.php +++ b/src/Model/OAuth2Consumer.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OAuth2Consumer implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OAuth2Consumer1.php b/src/Model/OAuth2Consumer1.php index 5f082cc6..a82ce06e 100644 --- a/src/Model/OAuth2Consumer1.php +++ b/src/Model/OAuth2Consumer1.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OAuth2Consumer1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Object.php b/src/Model/Object.php index 6d7955d6..2c471a68 100644 --- a/src/Model/Object.php +++ b/src/Model/Object.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Object implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OpenTelemetry.php b/src/Model/OpenTelemetry.php index 412f8e33..99e811e3 100644 --- a/src/Model/OpenTelemetry.php +++ b/src/Model/OpenTelemetry.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OpenTelemetry implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OperationsValue.php b/src/Model/OperationsValue.php index 09b767aa..18331dfd 100644 --- a/src/Model/OperationsValue.php +++ b/src/Model/OperationsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OperationsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Order.php b/src/Model/Order.php index 1d27947b..60ad635d 100644 --- a/src/Model/Order.php +++ b/src/Model/Order.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Order implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrderBillingPeriodLabel.php b/src/Model/OrderBillingPeriodLabel.php index f9b34cba..9ac9411a 100644 --- a/src/Model/OrderBillingPeriodLabel.php +++ b/src/Model/OrderBillingPeriodLabel.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrderBillingPeriodLabel implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrderLinks.php b/src/Model/OrderLinks.php index dc3bd64f..88ba68f1 100644 --- a/src/Model/OrderLinks.php +++ b/src/Model/OrderLinks.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrderLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrderLinksInvoices.php b/src/Model/OrderLinksInvoices.php index dc664eea..c670d5f1 100644 --- a/src/Model/OrderLinksInvoices.php +++ b/src/Model/OrderLinksInvoices.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrderLinksInvoices implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Organization.php b/src/Model/Organization.php index fba9a938..69aa8768 100644 --- a/src/Model/Organization.php +++ b/src/Model/Organization.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Organization implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAddonsObject.php b/src/Model/OrganizationAddonsObject.php index ff5e97bb..466cca8e 100644 --- a/src/Model/OrganizationAddonsObject.php +++ b/src/Model/OrganizationAddonsObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAddonsObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAddonsObjectAvailable.php b/src/Model/OrganizationAddonsObjectAvailable.php index 800f09ed..9ec161a2 100644 --- a/src/Model/OrganizationAddonsObjectAvailable.php +++ b/src/Model/OrganizationAddonsObjectAvailable.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAddonsObjectAvailable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAddonsObjectCurrent.php b/src/Model/OrganizationAddonsObjectCurrent.php index ea558363..23afc49b 100644 --- a/src/Model/OrganizationAddonsObjectCurrent.php +++ b/src/Model/OrganizationAddonsObjectCurrent.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAddonsObjectCurrent implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAddonsObjectUpgradesAvailable.php b/src/Model/OrganizationAddonsObjectUpgradesAvailable.php index 92ce348a..ea724131 100644 --- a/src/Model/OrganizationAddonsObjectUpgradesAvailable.php +++ b/src/Model/OrganizationAddonsObjectUpgradesAvailable.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAddonsObjectUpgradesAvailable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAlertConfig.php b/src/Model/OrganizationAlertConfig.php index b8d2e557..7ce903ef 100644 --- a/src/Model/OrganizationAlertConfig.php +++ b/src/Model/OrganizationAlertConfig.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAlertConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAlertConfigConfig.php b/src/Model/OrganizationAlertConfigConfig.php index c6a75503..ed2ab517 100644 --- a/src/Model/OrganizationAlertConfigConfig.php +++ b/src/Model/OrganizationAlertConfigConfig.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAlertConfigConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationAlertConfigConfigThreshold.php b/src/Model/OrganizationAlertConfigConfigThreshold.php index e8b7d877..4bb91bf8 100644 --- a/src/Model/OrganizationAlertConfigConfigThreshold.php +++ b/src/Model/OrganizationAlertConfigConfigThreshold.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationAlertConfigConfigThreshold implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationCarbon.php b/src/Model/OrganizationCarbon.php index 9e6af1a2..d075ac26 100644 --- a/src/Model/OrganizationCarbon.php +++ b/src/Model/OrganizationCarbon.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationCarbon implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObject.php b/src/Model/OrganizationEstimationObject.php index 942bcbf4..d4672a5a 100644 --- a/src/Model/OrganizationEstimationObject.php +++ b/src/Model/OrganizationEstimationObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectSubscriptions.php b/src/Model/OrganizationEstimationObjectSubscriptions.php index e6b00fa3..c6436051 100644 --- a/src/Model/OrganizationEstimationObjectSubscriptions.php +++ b/src/Model/OrganizationEstimationObjectSubscriptions.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectSubscriptions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectSubscriptionsListInner.php b/src/Model/OrganizationEstimationObjectSubscriptionsListInner.php index 7dc8c2b3..f27284c6 100644 --- a/src/Model/OrganizationEstimationObjectSubscriptionsListInner.php +++ b/src/Model/OrganizationEstimationObjectSubscriptionsListInner.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectSubscriptionsListInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.php b/src/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.php index dc3f9636..85ea83d9 100644 --- a/src/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.php +++ b/src/Model/OrganizationEstimationObjectSubscriptionsListInnerUsage.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectSubscriptionsListInnerUsage implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicenses.php b/src/Model/OrganizationEstimationObjectUserLicenses.php index beaeeaa3..d53a47fa 100644 --- a/src/Model/OrganizationEstimationObjectUserLicenses.php +++ b/src/Model/OrganizationEstimationObjectUserLicenses.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicenses implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesBase.php b/src/Model/OrganizationEstimationObjectUserLicensesBase.php index 0e561719..6da20664 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesBase.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesBase.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesBase implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesBaseList.php b/src/Model/OrganizationEstimationObjectUserLicensesBaseList.php index d003e8ab..e7df1f42 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesBaseList.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesBaseList.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesBaseList implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.php b/src/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.php index bd145406..19a874db 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesBaseListAdminUser.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesBaseListAdminUser implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.php b/src/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.php index 1491c465..b4f83dcb 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesBaseListViewerUser.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesBaseListViewerUser implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesUserManagement.php b/src/Model/OrganizationEstimationObjectUserLicensesUserManagement.php index da81649e..4d2ae4a7 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesUserManagement.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesUserManagement.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesUserManagement implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementList.php b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementList.php index 86aab0ac..3886c022 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementList.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementList.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesUserManagementList implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.php b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.php index 637e15a2..098c86a5 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesUserManagementListAdvancedManagementUser implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.php b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.php index 2707798d..2ff11236 100644 --- a/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.php +++ b/src/Model/OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationEstimationObjectUserLicensesUserManagementListStandardManagementUser implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationInvitation.php b/src/Model/OrganizationInvitation.php index 1bdd315e..64c3f8b0 100644 --- a/src/Model/OrganizationInvitation.php +++ b/src/Model/OrganizationInvitation.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationInvitation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationInvitationOwner.php b/src/Model/OrganizationInvitationOwner.php index a387f426..49fbc6b3 100644 --- a/src/Model/OrganizationInvitationOwner.php +++ b/src/Model/OrganizationInvitationOwner.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationInvitationOwner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinks.php b/src/Model/OrganizationLinks.php index 01a12898..ae9457dd 100644 --- a/src/Model/OrganizationLinks.php +++ b/src/Model/OrganizationLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksAddress.php b/src/Model/OrganizationLinksAddress.php index b8a111db..75f7597d 100644 --- a/src/Model/OrganizationLinksAddress.php +++ b/src/Model/OrganizationLinksAddress.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksAddress implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksApplyVoucher.php b/src/Model/OrganizationLinksApplyVoucher.php index 70366eb9..ae40ee95 100644 --- a/src/Model/OrganizationLinksApplyVoucher.php +++ b/src/Model/OrganizationLinksApplyVoucher.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksApplyVoucher implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksCreateMember.php b/src/Model/OrganizationLinksCreateMember.php index 01eb2c5f..ba66a816 100644 --- a/src/Model/OrganizationLinksCreateMember.php +++ b/src/Model/OrganizationLinksCreateMember.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksCreateMember implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksCreateSubscription.php b/src/Model/OrganizationLinksCreateSubscription.php index 75601905..43a266e4 100644 --- a/src/Model/OrganizationLinksCreateSubscription.php +++ b/src/Model/OrganizationLinksCreateSubscription.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksCreateSubscription implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksDelete.php b/src/Model/OrganizationLinksDelete.php index 514ea41d..c42c0b56 100644 --- a/src/Model/OrganizationLinksDelete.php +++ b/src/Model/OrganizationLinksDelete.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksDelete implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksEstimateSubscription.php b/src/Model/OrganizationLinksEstimateSubscription.php index 24dc4bc1..7cca2269 100644 --- a/src/Model/OrganizationLinksEstimateSubscription.php +++ b/src/Model/OrganizationLinksEstimateSubscription.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksEstimateSubscription implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksMembers.php b/src/Model/OrganizationLinksMembers.php index 7405efb3..8ae35d28 100644 --- a/src/Model/OrganizationLinksMembers.php +++ b/src/Model/OrganizationLinksMembers.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksMembers implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksMfaEnforcement.php b/src/Model/OrganizationLinksMfaEnforcement.php index 93e8d733..09a485b6 100644 --- a/src/Model/OrganizationLinksMfaEnforcement.php +++ b/src/Model/OrganizationLinksMfaEnforcement.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksMfaEnforcement implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksOrders.php b/src/Model/OrganizationLinksOrders.php index ba99f4da..c91f3f49 100644 --- a/src/Model/OrganizationLinksOrders.php +++ b/src/Model/OrganizationLinksOrders.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksOrders implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksPaymentSource.php b/src/Model/OrganizationLinksPaymentSource.php index a81f2db1..6e844afa 100644 --- a/src/Model/OrganizationLinksPaymentSource.php +++ b/src/Model/OrganizationLinksPaymentSource.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksPaymentSource implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksProfile.php b/src/Model/OrganizationLinksProfile.php index d533b34f..0193d76d 100644 --- a/src/Model/OrganizationLinksProfile.php +++ b/src/Model/OrganizationLinksProfile.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksProfile implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksSelf.php b/src/Model/OrganizationLinksSelf.php index 745aa1e3..22a25d1f 100644 --- a/src/Model/OrganizationLinksSelf.php +++ b/src/Model/OrganizationLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksSubscriptions.php b/src/Model/OrganizationLinksSubscriptions.php index 588a0472..d9575a2c 100644 --- a/src/Model/OrganizationLinksSubscriptions.php +++ b/src/Model/OrganizationLinksSubscriptions.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksSubscriptions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksUpdate.php b/src/Model/OrganizationLinksUpdate.php index c131e9ff..5794f3d2 100644 --- a/src/Model/OrganizationLinksUpdate.php +++ b/src/Model/OrganizationLinksUpdate.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksUpdate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationLinksVouchers.php b/src/Model/OrganizationLinksVouchers.php index 515076e6..c06c125a 100644 --- a/src/Model/OrganizationLinksVouchers.php +++ b/src/Model/OrganizationLinksVouchers.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationLinksVouchers implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMember.php b/src/Model/OrganizationMember.php index b4d9dcd5..4131b5f1 100644 --- a/src/Model/OrganizationMember.php +++ b/src/Model/OrganizationMember.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMember implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMemberLinks.php b/src/Model/OrganizationMemberLinks.php index 0d33eea8..c2068843 100644 --- a/src/Model/OrganizationMemberLinks.php +++ b/src/Model/OrganizationMemberLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMemberLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMemberLinksDelete.php b/src/Model/OrganizationMemberLinksDelete.php index c5aef784..b43074ea 100644 --- a/src/Model/OrganizationMemberLinksDelete.php +++ b/src/Model/OrganizationMemberLinksDelete.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMemberLinksDelete implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMemberLinksSelf.php b/src/Model/OrganizationMemberLinksSelf.php index 06aa74b1..8e86076a 100644 --- a/src/Model/OrganizationMemberLinksSelf.php +++ b/src/Model/OrganizationMemberLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMemberLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMemberLinksUpdate.php b/src/Model/OrganizationMemberLinksUpdate.php index 5eec6d0c..7201ecbe 100644 --- a/src/Model/OrganizationMemberLinksUpdate.php +++ b/src/Model/OrganizationMemberLinksUpdate.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMemberLinksUpdate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationMfaEnforcement.php b/src/Model/OrganizationMfaEnforcement.php index bbf4ba2d..c551e9c4 100644 --- a/src/Model/OrganizationMfaEnforcement.php +++ b/src/Model/OrganizationMfaEnforcement.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationMfaEnforcement implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProject.php b/src/Model/OrganizationProject.php index 8c5b57b5..74f18ca1 100644 --- a/src/Model/OrganizationProject.php +++ b/src/Model/OrganizationProject.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectCarbon.php b/src/Model/OrganizationProjectCarbon.php index f46f48b6..ad0023d9 100644 --- a/src/Model/OrganizationProjectCarbon.php +++ b/src/Model/OrganizationProjectCarbon.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectCarbon implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinks.php b/src/Model/OrganizationProjectLinks.php index e9ebe260..b8aa35fa 100644 --- a/src/Model/OrganizationProjectLinks.php +++ b/src/Model/OrganizationProjectLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinksActivities.php b/src/Model/OrganizationProjectLinksActivities.php index 1a90a024..25775887 100644 --- a/src/Model/OrganizationProjectLinksActivities.php +++ b/src/Model/OrganizationProjectLinksActivities.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinksActivities implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinksAddons.php b/src/Model/OrganizationProjectLinksAddons.php index afaaca37..3236253a 100644 --- a/src/Model/OrganizationProjectLinksAddons.php +++ b/src/Model/OrganizationProjectLinksAddons.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinksAddons implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinksDelete.php b/src/Model/OrganizationProjectLinksDelete.php index a1fb5080..ff1ccc13 100644 --- a/src/Model/OrganizationProjectLinksDelete.php +++ b/src/Model/OrganizationProjectLinksDelete.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinksDelete implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinksSelf.php b/src/Model/OrganizationProjectLinksSelf.php index 4256a9e2..9c312ae5 100644 --- a/src/Model/OrganizationProjectLinksSelf.php +++ b/src/Model/OrganizationProjectLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationProjectLinksUpdate.php b/src/Model/OrganizationProjectLinksUpdate.php index 25669744..252c26ec 100644 --- a/src/Model/OrganizationProjectLinksUpdate.php +++ b/src/Model/OrganizationProjectLinksUpdate.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationProjectLinksUpdate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationReference.php b/src/Model/OrganizationReference.php index 9f781e39..2f30c3e9 100644 --- a/src/Model/OrganizationReference.php +++ b/src/Model/OrganizationReference.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationReference implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OrganizationSSOConfig.php b/src/Model/OrganizationSSOConfig.php index a0a01ace..a65daf5e 100644 --- a/src/Model/OrganizationSSOConfig.php +++ b/src/Model/OrganizationSSOConfig.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OrganizationSSOConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OutboundFirewall.php b/src/Model/OutboundFirewall.php index 55062cec..6ecfcae6 100644 --- a/src/Model/OutboundFirewall.php +++ b/src/Model/OutboundFirewall.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OutboundFirewall implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OutboundFirewallRestrictionsInner.php b/src/Model/OutboundFirewallRestrictionsInner.php index a069b8f1..9f60ebc6 100644 --- a/src/Model/OutboundFirewallRestrictionsInner.php +++ b/src/Model/OutboundFirewallRestrictionsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OutboundFirewallRestrictionsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/OwnerInfo.php b/src/Model/OwnerInfo.php index 38e3dc69..2d29aa14 100644 --- a/src/Model/OwnerInfo.php +++ b/src/Model/OwnerInfo.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class OwnerInfo implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PagerDutyIntegration.php b/src/Model/PagerDutyIntegration.php index cd68744a..01b8b075 100644 --- a/src/Model/PagerDutyIntegration.php +++ b/src/Model/PagerDutyIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PagerDutyIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PagerDutyIntegrationCreateInput.php b/src/Model/PagerDutyIntegrationCreateInput.php index a5cfab22..3a15f9bd 100644 --- a/src/Model/PagerDutyIntegrationCreateInput.php +++ b/src/Model/PagerDutyIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PagerDutyIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PagerDutyIntegrationPatch.php b/src/Model/PagerDutyIntegrationPatch.php index a875e5d7..a07fe062 100644 --- a/src/Model/PagerDutyIntegrationPatch.php +++ b/src/Model/PagerDutyIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PagerDutyIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PathValue.php b/src/Model/PathValue.php index 6a3d9b16..f9aa0bd3 100644 --- a/src/Model/PathValue.php +++ b/src/Model/PathValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PathValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PlanRecords.php b/src/Model/PlanRecords.php index 1ebfba3c..8157c045 100644 --- a/src/Model/PlanRecords.php +++ b/src/Model/PlanRecords.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PlanRecords implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PreServiceResourcesOverridesValue.php b/src/Model/PreServiceResourcesOverridesValue.php index d84110ea..f8a599be 100644 --- a/src/Model/PreServiceResourcesOverridesValue.php +++ b/src/Model/PreServiceResourcesOverridesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PreServiceResourcesOverridesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PreflightChecks.php b/src/Model/PreflightChecks.php index b61dfae8..918a751a 100644 --- a/src/Model/PreflightChecks.php +++ b/src/Model/PreflightChecks.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PreflightChecks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PrepaymentObject.php b/src/Model/PrepaymentObject.php index 25a8c78c..22f16db3 100644 --- a/src/Model/PrepaymentObject.php +++ b/src/Model/PrepaymentObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PrepaymentObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PrepaymentObjectPrepayment.php b/src/Model/PrepaymentObjectPrepayment.php index 5ca88efc..99bb9ed1 100644 --- a/src/Model/PrepaymentObjectPrepayment.php +++ b/src/Model/PrepaymentObjectPrepayment.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PrepaymentObjectPrepayment implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PrepaymentObjectPrepaymentBalance.php b/src/Model/PrepaymentObjectPrepaymentBalance.php index 0ceab777..337d2a82 100644 --- a/src/Model/PrepaymentObjectPrepaymentBalance.php +++ b/src/Model/PrepaymentObjectPrepaymentBalance.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PrepaymentObjectPrepaymentBalance implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PrepaymentTransactionObject.php b/src/Model/PrepaymentTransactionObject.php index 619384b2..7a238afb 100644 --- a/src/Model/PrepaymentTransactionObject.php +++ b/src/Model/PrepaymentTransactionObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PrepaymentTransactionObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/PrepaymentTransactionObjectAmount.php b/src/Model/PrepaymentTransactionObjectAmount.php index fe6f8db1..d2252540 100644 --- a/src/Model/PrepaymentTransactionObjectAmount.php +++ b/src/Model/PrepaymentTransactionObjectAmount.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class PrepaymentTransactionObjectAmount implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProdDomainStorage.php b/src/Model/ProdDomainStorage.php index 89b29962..0bf59a54 100644 --- a/src/Model/ProdDomainStorage.php +++ b/src/Model/ProdDomainStorage.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProdDomainStorage implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProdDomainStorageCreateInput.php b/src/Model/ProdDomainStorageCreateInput.php index 68ae8e06..52e254a8 100644 --- a/src/Model/ProdDomainStorageCreateInput.php +++ b/src/Model/ProdDomainStorageCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProdDomainStorageCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProdDomainStoragePatch.php b/src/Model/ProdDomainStoragePatch.php index 0f751951..9c88b6a2 100644 --- a/src/Model/ProdDomainStoragePatch.php +++ b/src/Model/ProdDomainStoragePatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProdDomainStoragePatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProductionResources.php b/src/Model/ProductionResources.php index 6bd65a71..56e68353 100644 --- a/src/Model/ProductionResources.php +++ b/src/Model/ProductionResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProductionResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Profile.php b/src/Model/Profile.php index 3c4e94f7..3b299f5d 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Profile implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrial.php b/src/Model/ProfileCurrentTrial.php index 95ad066e..8120316d 100644 --- a/src/Model/ProfileCurrentTrial.php +++ b/src/Model/ProfileCurrentTrial.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrial implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrialCurrent.php b/src/Model/ProfileCurrentTrialCurrent.php index 53f0ace9..465d7fc9 100644 --- a/src/Model/ProfileCurrentTrialCurrent.php +++ b/src/Model/ProfileCurrentTrialCurrent.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrialCurrent implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrialProjects.php b/src/Model/ProfileCurrentTrialProjects.php index 6b190d86..5fe695ed 100644 --- a/src/Model/ProfileCurrentTrialProjects.php +++ b/src/Model/ProfileCurrentTrialProjects.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrialProjects implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrialProjectsTotal.php b/src/Model/ProfileCurrentTrialProjectsTotal.php index 9d668780..00840afc 100644 --- a/src/Model/ProfileCurrentTrialProjectsTotal.php +++ b/src/Model/ProfileCurrentTrialProjectsTotal.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrialProjectsTotal implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrialSpend.php b/src/Model/ProfileCurrentTrialSpend.php index a9018623..1f37e116 100644 --- a/src/Model/ProfileCurrentTrialSpend.php +++ b/src/Model/ProfileCurrentTrialSpend.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrialSpend implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProfileCurrentTrialSpendRemaining.php b/src/Model/ProfileCurrentTrialSpendRemaining.php index 56d6805c..b917cf3d 100644 --- a/src/Model/ProfileCurrentTrialSpendRemaining.php +++ b/src/Model/ProfileCurrentTrialSpendRemaining.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProfileCurrentTrialSpendRemaining implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Project.php b/src/Model/Project.php index 39e6ec51..8b35ba19 100644 --- a/src/Model/Project.php +++ b/src/Model/Project.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Project implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddon.php b/src/Model/ProjectAddon.php index c704c155..65e713a2 100644 --- a/src/Model/ProjectAddon.php +++ b/src/Model/ProjectAddon.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddon implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonBase.php b/src/Model/ProjectAddonBase.php index b74664ef..36795019 100644 --- a/src/Model/ProjectAddonBase.php +++ b/src/Model/ProjectAddonBase.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonBase implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonBaseLinks.php b/src/Model/ProjectAddonBaseLinks.php index 26976eae..4d1138db 100644 --- a/src/Model/ProjectAddonBaseLinks.php +++ b/src/Model/ProjectAddonBaseLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonBaseLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonBaseLinksDelete.php b/src/Model/ProjectAddonBaseLinksDelete.php index 0b171485..cc4bb58c 100644 --- a/src/Model/ProjectAddonBaseLinksDelete.php +++ b/src/Model/ProjectAddonBaseLinksDelete.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonBaseLinksDelete implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonBaseLinksSelf.php b/src/Model/ProjectAddonBaseLinksSelf.php index cce91f28..a5db5cf1 100644 --- a/src/Model/ProjectAddonBaseLinksSelf.php +++ b/src/Model/ProjectAddonBaseLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonBaseLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonBaseLinksUpdate.php b/src/Model/ProjectAddonBaseLinksUpdate.php index c5b5d068..a57b773b 100644 --- a/src/Model/ProjectAddonBaseLinksUpdate.php +++ b/src/Model/ProjectAddonBaseLinksUpdate.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonBaseLinksUpdate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonWithQuantityFields.php b/src/Model/ProjectAddonWithQuantityFields.php index 230fbfd1..7122b67f 100644 --- a/src/Model/ProjectAddonWithQuantityFields.php +++ b/src/Model/ProjectAddonWithQuantityFields.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonWithQuantityFields implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectAddonWithSkuFields.php b/src/Model/ProjectAddonWithSkuFields.php index 802fbd60..8798b6b2 100644 --- a/src/Model/ProjectAddonWithSkuFields.php +++ b/src/Model/ProjectAddonWithSkuFields.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectAddonWithSkuFields implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectCapabilities.php b/src/Model/ProjectCapabilities.php index 8a968fcc..4fb656c3 100644 --- a/src/Model/ProjectCapabilities.php +++ b/src/Model/ProjectCapabilities.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectCapabilities implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectCarbon.php b/src/Model/ProjectCarbon.php index 0db67bb3..10160d80 100644 --- a/src/Model/ProjectCarbon.php +++ b/src/Model/ProjectCarbon.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectCarbon implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectInfo.php b/src/Model/ProjectInfo.php index 3141f031..b3aba029 100644 --- a/src/Model/ProjectInfo.php +++ b/src/Model/ProjectInfo.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectInfo implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectInvitation.php b/src/Model/ProjectInvitation.php index 03190081..ad7a0ff6 100644 --- a/src/Model/ProjectInvitation.php +++ b/src/Model/ProjectInvitation.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectInvitation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectInvitationEnvironmentsInner.php b/src/Model/ProjectInvitationEnvironmentsInner.php index 36d42dc5..833d66c6 100644 --- a/src/Model/ProjectInvitationEnvironmentsInner.php +++ b/src/Model/ProjectInvitationEnvironmentsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectInvitationEnvironmentsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectOptions.php b/src/Model/ProjectOptions.php index c2666602..8d39ce2d 100644 --- a/src/Model/ProjectOptions.php +++ b/src/Model/ProjectOptions.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectOptions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectOptionsDefaults.php b/src/Model/ProjectOptionsDefaults.php index a900ffcf..33c179b1 100644 --- a/src/Model/ProjectOptionsDefaults.php +++ b/src/Model/ProjectOptionsDefaults.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectOptionsDefaults implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectOptionsEnforced.php b/src/Model/ProjectOptionsEnforced.php index f2e7af84..c8642c55 100644 --- a/src/Model/ProjectOptionsEnforced.php +++ b/src/Model/ProjectOptionsEnforced.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectOptionsEnforced implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectPatch.php b/src/Model/ProjectPatch.php index 9ece5797..73e0e4a6 100644 --- a/src/Model/ProjectPatch.php +++ b/src/Model/ProjectPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectReference.php b/src/Model/ProjectReference.php index 17c9170b..69ca06a4 100644 --- a/src/Model/ProjectReference.php +++ b/src/Model/ProjectReference.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectReference implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectSettings.php b/src/Model/ProjectSettings.php index a6b82d75..70183e19 100644 --- a/src/Model/ProjectSettings.php +++ b/src/Model/ProjectSettings.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectSettings implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectSettingsPatch.php b/src/Model/ProjectSettingsPatch.php index 9a32a706..f376f2c3 100644 --- a/src/Model/ProjectSettingsPatch.php +++ b/src/Model/ProjectSettingsPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectSettingsPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectStatus.php b/src/Model/ProjectStatus.php index 10b863b1..b33dd62b 100644 --- a/src/Model/ProjectStatus.php +++ b/src/Model/ProjectStatus.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectStatus implements JsonSerializable { /** diff --git a/src/Model/ProjectType.php b/src/Model/ProjectType.php index 08e9c7ec..3010c78e 100644 --- a/src/Model/ProjectType.php +++ b/src/Model/ProjectType.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectType implements JsonSerializable { /** diff --git a/src/Model/ProjectVariable.php b/src/Model/ProjectVariable.php index ab9d728a..eb67aefe 100644 --- a/src/Model/ProjectVariable.php +++ b/src/Model/ProjectVariable.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectVariable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectVariableCreateInput.php b/src/Model/ProjectVariableCreateInput.php index 3d5f8f36..24036be1 100644 --- a/src/Model/ProjectVariableCreateInput.php +++ b/src/Model/ProjectVariableCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectVariableCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProjectVariablePatch.php b/src/Model/ProjectVariablePatch.php index f23b13ec..5ecc28ac 100644 --- a/src/Model/ProjectVariablePatch.php +++ b/src/Model/ProjectVariablePatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProjectVariablePatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ProxyRoute.php b/src/Model/ProxyRoute.php index 99be8410..98f81ee1 100644 --- a/src/Model/ProxyRoute.php +++ b/src/Model/ProxyRoute.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ProxyRoute implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RedirectConfiguration.php b/src/Model/RedirectConfiguration.php index d6d9974e..fc5ed36d 100644 --- a/src/Model/RedirectConfiguration.php +++ b/src/Model/RedirectConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RedirectConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RedirectRoute.php b/src/Model/RedirectRoute.php index 1c3830fd..307e3f59 100644 --- a/src/Model/RedirectRoute.php +++ b/src/Model/RedirectRoute.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RedirectRoute implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Ref.php b/src/Model/Ref.php index e2593426..680d0e8c 100644 --- a/src/Model/Ref.php +++ b/src/Model/Ref.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Ref implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Region.php b/src/Model/Region.php index a6ad8d94..40565b58 100644 --- a/src/Model/Region.php +++ b/src/Model/Region.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Region implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RegionDatacenter.php b/src/Model/RegionDatacenter.php index 0d34850d..df852dd6 100644 --- a/src/Model/RegionDatacenter.php +++ b/src/Model/RegionDatacenter.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RegionDatacenter implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RegionEnvironmentalImpact.php b/src/Model/RegionEnvironmentalImpact.php index 913c138e..edcf25d2 100644 --- a/src/Model/RegionEnvironmentalImpact.php +++ b/src/Model/RegionEnvironmentalImpact.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RegionEnvironmentalImpact implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RegionProvider.php b/src/Model/RegionProvider.php index 0d5c0904..4544dbcf 100644 --- a/src/Model/RegionProvider.php +++ b/src/Model/RegionProvider.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RegionProvider implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RegionReference.php b/src/Model/RegionReference.php index 69f8ebf8..c41da658 100644 --- a/src/Model/RegionReference.php +++ b/src/Model/RegionReference.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RegionReference implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ReplacementDomainStorage.php b/src/Model/ReplacementDomainStorage.php index 1b5daba4..e24f3e83 100644 --- a/src/Model/ReplacementDomainStorage.php +++ b/src/Model/ReplacementDomainStorage.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ReplacementDomainStorage implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ReplacementDomainStorageCreateInput.php b/src/Model/ReplacementDomainStorageCreateInput.php index 27d23c21..07afaad7 100644 --- a/src/Model/ReplacementDomainStorageCreateInput.php +++ b/src/Model/ReplacementDomainStorageCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ReplacementDomainStorageCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ReplacementDomainStoragePatch.php b/src/Model/ReplacementDomainStoragePatch.php index dbe2a3b2..9b4f6630 100644 --- a/src/Model/ReplacementDomainStoragePatch.php +++ b/src/Model/ReplacementDomainStoragePatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ReplacementDomainStoragePatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RepositoryInformation.php b/src/Model/RepositoryInformation.php index 43080f3d..18d511dd 100644 --- a/src/Model/RepositoryInformation.php +++ b/src/Model/RepositoryInformation.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RepositoryInformation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RequestBuffering.php b/src/Model/RequestBuffering.php index 1fe636d0..61c70a55 100644 --- a/src/Model/RequestBuffering.php +++ b/src/Model/RequestBuffering.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RequestBuffering implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ResetEmailAddressRequest.php b/src/Model/ResetEmailAddressRequest.php index 356c3e15..893161a8 100644 --- a/src/Model/ResetEmailAddressRequest.php +++ b/src/Model/ResetEmailAddressRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ResetEmailAddressRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ResourceConfig.php b/src/Model/ResourceConfig.php index 26d4ad27..64561e70 100644 --- a/src/Model/ResourceConfig.php +++ b/src/Model/ResourceConfig.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ResourceConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources.php b/src/Model/Resources.php index b5b5638b..657c2072 100644 --- a/src/Model/Resources.php +++ b/src/Model/Resources.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources1.php b/src/Model/Resources1.php index cb759981..d866b7d2 100644 --- a/src/Model/Resources1.php +++ b/src/Model/Resources1.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources2.php b/src/Model/Resources2.php index dccdd343..4fb4c57f 100644 --- a/src/Model/Resources2.php +++ b/src/Model/Resources2.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources2 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources3.php b/src/Model/Resources3.php index 658c5934..323b2c89 100644 --- a/src/Model/Resources3.php +++ b/src/Model/Resources3.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources3 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources4.php b/src/Model/Resources4.php index f8302bed..4d17f2e1 100644 --- a/src/Model/Resources4.php +++ b/src/Model/Resources4.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources4 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources5.php b/src/Model/Resources5.php index 84d408af..bbaa996e 100644 --- a/src/Model/Resources5.php +++ b/src/Model/Resources5.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources5 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Resources6.php b/src/Model/Resources6.php index ab17b8f8..ac401f01 100644 --- a/src/Model/Resources6.php +++ b/src/Model/Resources6.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Resources6 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ResourcesLimits.php b/src/Model/ResourcesLimits.php index b6264f82..dd25858b 100644 --- a/src/Model/ResourcesLimits.php +++ b/src/Model/ResourcesLimits.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ResourcesLimits implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ResourcesOverridesValue.php b/src/Model/ResourcesOverridesValue.php index 2857f901..c383f20c 100644 --- a/src/Model/ResourcesOverridesValue.php +++ b/src/Model/ResourcesOverridesValue.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ResourcesOverridesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Route.php b/src/Model/Route.php index a2584da9..8362c6be 100644 --- a/src/Model/Route.php +++ b/src/Model/Route.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Route implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RouterResources.php b/src/Model/RouterResources.php index fd86e1d0..45ea2c3d 100644 --- a/src/Model/RouterResources.php +++ b/src/Model/RouterResources.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RouterResources implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RoutesValue.php b/src/Model/RoutesValue.php index 54da15ac..182646c7 100644 --- a/src/Model/RoutesValue.php +++ b/src/Model/RoutesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RoutesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Routing.php b/src/Model/Routing.php index a3c9d706..7381bdd9 100644 --- a/src/Model/Routing.php +++ b/src/Model/Routing.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Routing implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Routing1.php b/src/Model/Routing1.php index 3b1fb9cb..b2bf8352 100644 --- a/src/Model/Routing1.php +++ b/src/Model/Routing1.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Routing1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/RuntimeOperations.php b/src/Model/RuntimeOperations.php index d5a1e1a3..d20a146f 100644 --- a/src/Model/RuntimeOperations.php +++ b/src/Model/RuntimeOperations.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class RuntimeOperations implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SSIConfiguration.php b/src/Model/SSIConfiguration.php index 1624628b..f5c28641 100644 --- a/src/Model/SSIConfiguration.php +++ b/src/Model/SSIConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SSIConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ScheduleInner.php b/src/Model/ScheduleInner.php index eb5a8e45..f63081c8 100644 --- a/src/Model/ScheduleInner.php +++ b/src/Model/ScheduleInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ScheduleInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Script.php b/src/Model/Script.php index 51848eed..4acdd554 100644 --- a/src/Model/Script.php +++ b/src/Model/Script.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Script implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ScriptIntegration.php b/src/Model/ScriptIntegration.php index 8129761a..d5d831ec 100644 --- a/src/Model/ScriptIntegration.php +++ b/src/Model/ScriptIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ScriptIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ScriptIntegrationCreateInput.php b/src/Model/ScriptIntegrationCreateInput.php index 559a470e..1c545efb 100644 --- a/src/Model/ScriptIntegrationCreateInput.php +++ b/src/Model/ScriptIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ScriptIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ScriptIntegrationPatch.php b/src/Model/ScriptIntegrationPatch.php index a838dac6..b941c23c 100644 --- a/src/Model/ScriptIntegrationPatch.php +++ b/src/Model/ScriptIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ScriptIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SendOrgMfaReminders200ResponseValue.php b/src/Model/SendOrgMfaReminders200ResponseValue.php index ba429f42..51038133 100644 --- a/src/Model/SendOrgMfaReminders200ResponseValue.php +++ b/src/Model/SendOrgMfaReminders200ResponseValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SendOrgMfaReminders200ResponseValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SendOrgMfaRemindersRequest.php b/src/Model/SendOrgMfaRemindersRequest.php index b93b3ce4..d07c905b 100644 --- a/src/Model/SendOrgMfaRemindersRequest.php +++ b/src/Model/SendOrgMfaRemindersRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SendOrgMfaRemindersRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ServiceRelationshipsValue.php b/src/Model/ServiceRelationshipsValue.php index 8139429a..132494d5 100644 --- a/src/Model/ServiceRelationshipsValue.php +++ b/src/Model/ServiceRelationshipsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ServiceRelationshipsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ServicesValue.php b/src/Model/ServicesValue.php index efb919e1..2502b302 100644 --- a/src/Model/ServicesValue.php +++ b/src/Model/ServicesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ServicesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/ServicesValue1.php b/src/Model/ServicesValue1.php index 58aeed32..4244e297 100644 --- a/src/Model/ServicesValue1.php +++ b/src/Model/ServicesValue1.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class ServicesValue1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Sizing.php b/src/Model/Sizing.php index 3ff6c9af..a0c5c69f 100644 --- a/src/Model/Sizing.php +++ b/src/Model/Sizing.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Sizing implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SlackIntegration.php b/src/Model/SlackIntegration.php index 1e900643..f0fa658d 100644 --- a/src/Model/SlackIntegration.php +++ b/src/Model/SlackIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SlackIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SlackIntegrationCreateInput.php b/src/Model/SlackIntegrationCreateInput.php index cec6e1b4..22d52fa4 100644 --- a/src/Model/SlackIntegrationCreateInput.php +++ b/src/Model/SlackIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SlackIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SlackIntegrationPatch.php b/src/Model/SlackIntegrationPatch.php index d057f169..7bc37217 100644 --- a/src/Model/SlackIntegrationPatch.php +++ b/src/Model/SlackIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SlackIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SourceCodeConfiguration.php b/src/Model/SourceCodeConfiguration.php index 929359f5..387b4281 100644 --- a/src/Model/SourceCodeConfiguration.php +++ b/src/Model/SourceCodeConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SourceCodeConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SourceOperations.php b/src/Model/SourceOperations.php index 4e4494b5..b319d7e5 100644 --- a/src/Model/SourceOperations.php +++ b/src/Model/SourceOperations.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SourceOperations implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SourceOperationsValue.php b/src/Model/SourceOperationsValue.php index 65df58a5..5c26f56a 100644 --- a/src/Model/SourceOperationsValue.php +++ b/src/Model/SourceOperationsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SourceOperationsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SpecificOverridesValue.php b/src/Model/SpecificOverridesValue.php index 62e0a432..dffd13fe 100644 --- a/src/Model/SpecificOverridesValue.php +++ b/src/Model/SpecificOverridesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SpecificOverridesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Splunk.php b/src/Model/Splunk.php index f2625ae6..77ae6a84 100644 --- a/src/Model/Splunk.php +++ b/src/Model/Splunk.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Splunk implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SplunkIntegration.php b/src/Model/SplunkIntegration.php index 804042f3..a0427c7a 100644 --- a/src/Model/SplunkIntegration.php +++ b/src/Model/SplunkIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SplunkIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SplunkIntegrationCreateInput.php b/src/Model/SplunkIntegrationCreateInput.php index 5162dd3c..795da4e2 100644 --- a/src/Model/SplunkIntegrationCreateInput.php +++ b/src/Model/SplunkIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SplunkIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SplunkIntegrationPatch.php b/src/Model/SplunkIntegrationPatch.php index f58ce940..5925e39f 100644 --- a/src/Model/SplunkIntegrationPatch.php +++ b/src/Model/SplunkIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SplunkIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SshKey.php b/src/Model/SshKey.php index eaaef1a8..f6e32b31 100644 --- a/src/Model/SshKey.php +++ b/src/Model/SshKey.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SshKey implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Status.php b/src/Model/Status.php index e0e896b7..d299fd5e 100644 --- a/src/Model/Status.php +++ b/src/Model/Status.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Status implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/StickyConfiguration.php b/src/Model/StickyConfiguration.php index ad1f67fb..c94716a0 100644 --- a/src/Model/StickyConfiguration.php +++ b/src/Model/StickyConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class StickyConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/StrictTransportSecurityOptions.php b/src/Model/StrictTransportSecurityOptions.php index 07682dcb..f29c591d 100644 --- a/src/Model/StrictTransportSecurityOptions.php +++ b/src/Model/StrictTransportSecurityOptions.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class StrictTransportSecurityOptions implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/StringFilter.php b/src/Model/StringFilter.php index c200da47..07cb9d29 100644 --- a/src/Model/StringFilter.php +++ b/src/Model/StringFilter.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class StringFilter implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Subscription.php b/src/Model/Subscription.php index cd675f86..92e7d147 100644 --- a/src/Model/Subscription.php +++ b/src/Model/Subscription.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Subscription implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Subscription1.php b/src/Model/Subscription1.php index 46ef8467..ba1abfb4 100644 --- a/src/Model/Subscription1.php +++ b/src/Model/Subscription1.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Subscription1 implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionAddonsObject.php b/src/Model/SubscriptionAddonsObject.php index 24e05952..0f4adee9 100644 --- a/src/Model/SubscriptionAddonsObject.php +++ b/src/Model/SubscriptionAddonsObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionAddonsObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionAddonsObjectAvailable.php b/src/Model/SubscriptionAddonsObjectAvailable.php index 3e90a1fa..593548ed 100644 --- a/src/Model/SubscriptionAddonsObjectAvailable.php +++ b/src/Model/SubscriptionAddonsObjectAvailable.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionAddonsObjectAvailable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionAddonsObjectCurrent.php b/src/Model/SubscriptionAddonsObjectCurrent.php index acb28ccc..aabf0c0d 100644 --- a/src/Model/SubscriptionAddonsObjectCurrent.php +++ b/src/Model/SubscriptionAddonsObjectCurrent.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionAddonsObjectCurrent implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionAddonsObjectUpgradesAvailable.php b/src/Model/SubscriptionAddonsObjectUpgradesAvailable.php index 40532568..db1163ee 100644 --- a/src/Model/SubscriptionAddonsObjectUpgradesAvailable.php +++ b/src/Model/SubscriptionAddonsObjectUpgradesAvailable.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionAddonsObjectUpgradesAvailable implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionCurrentUsageObject.php b/src/Model/SubscriptionCurrentUsageObject.php index 8907c183..5c29d0a3 100644 --- a/src/Model/SubscriptionCurrentUsageObject.php +++ b/src/Model/SubscriptionCurrentUsageObject.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionCurrentUsageObject implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SubscriptionInformation.php b/src/Model/SubscriptionInformation.php index 8b608e9c..05e64e36 100644 --- a/src/Model/SubscriptionInformation.php +++ b/src/Model/SubscriptionInformation.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SubscriptionInformation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SumoLogic.php b/src/Model/SumoLogic.php index 1904c23b..deddd3f2 100644 --- a/src/Model/SumoLogic.php +++ b/src/Model/SumoLogic.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SumoLogic implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SumologicIntegration.php b/src/Model/SumologicIntegration.php index 73c7d627..336da367 100644 --- a/src/Model/SumologicIntegration.php +++ b/src/Model/SumologicIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SumologicIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SumologicIntegrationCreateInput.php b/src/Model/SumologicIntegrationCreateInput.php index d460c1d7..2c90983a 100644 --- a/src/Model/SumologicIntegrationCreateInput.php +++ b/src/Model/SumologicIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SumologicIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SumologicIntegrationPatch.php b/src/Model/SumologicIntegrationPatch.php index 0bffb7d0..dc86c67e 100644 --- a/src/Model/SumologicIntegrationPatch.php +++ b/src/Model/SumologicIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SumologicIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Syslog.php b/src/Model/Syslog.php index 44e8398a..c3b0e554 100644 --- a/src/Model/Syslog.php +++ b/src/Model/Syslog.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Syslog implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SyslogIntegration.php b/src/Model/SyslogIntegration.php index 9972620e..937a6859 100644 --- a/src/Model/SyslogIntegration.php +++ b/src/Model/SyslogIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SyslogIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SyslogIntegrationCreateInput.php b/src/Model/SyslogIntegrationCreateInput.php index 2471c677..7f905164 100644 --- a/src/Model/SyslogIntegrationCreateInput.php +++ b/src/Model/SyslogIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SyslogIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SyslogIntegrationPatch.php b/src/Model/SyslogIntegrationPatch.php index c15b2b66..e708f451 100644 --- a/src/Model/SyslogIntegrationPatch.php +++ b/src/Model/SyslogIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SyslogIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/SystemInformation.php b/src/Model/SystemInformation.php index 419836f4..558ccb46 100644 --- a/src/Model/SystemInformation.php +++ b/src/Model/SystemInformation.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class SystemInformation implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TLSSettings.php b/src/Model/TLSSettings.php index 6b335dc8..3ed493fc 100644 --- a/src/Model/TLSSettings.php +++ b/src/Model/TLSSettings.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TLSSettings implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Team.php b/src/Model/Team.php index 4a5a24ed..dca406ae 100644 --- a/src/Model/Team.php +++ b/src/Model/Team.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Team implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamCounts.php b/src/Model/TeamCounts.php index 6699c39f..87b24ff7 100644 --- a/src/Model/TeamCounts.php +++ b/src/Model/TeamCounts.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamCounts implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamMember.php b/src/Model/TeamMember.php index 95763bc4..4e2a14b0 100644 --- a/src/Model/TeamMember.php +++ b/src/Model/TeamMember.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamMember implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamProjectAccess.php b/src/Model/TeamProjectAccess.php index e47c18c7..d6d08f67 100644 --- a/src/Model/TeamProjectAccess.php +++ b/src/Model/TeamProjectAccess.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamProjectAccess implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamProjectAccessLinks.php b/src/Model/TeamProjectAccessLinks.php index 3da9aeca..c2f0ff02 100644 --- a/src/Model/TeamProjectAccessLinks.php +++ b/src/Model/TeamProjectAccessLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamProjectAccessLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamProjectAccessLinksDelete.php b/src/Model/TeamProjectAccessLinksDelete.php index cf337d4f..8861a13c 100644 --- a/src/Model/TeamProjectAccessLinksDelete.php +++ b/src/Model/TeamProjectAccessLinksDelete.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamProjectAccessLinksDelete implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamProjectAccessLinksSelf.php b/src/Model/TeamProjectAccessLinksSelf.php index 47c15313..a5795fa8 100644 --- a/src/Model/TeamProjectAccessLinksSelf.php +++ b/src/Model/TeamProjectAccessLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamProjectAccessLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamProjectAccessLinksUpdate.php b/src/Model/TeamProjectAccessLinksUpdate.php index 2ad4ad95..69e0841f 100644 --- a/src/Model/TeamProjectAccessLinksUpdate.php +++ b/src/Model/TeamProjectAccessLinksUpdate.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamProjectAccessLinksUpdate implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TeamReference.php b/src/Model/TeamReference.php index cb6abaa5..f4373e4b 100644 --- a/src/Model/TeamReference.php +++ b/src/Model/TeamReference.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TeamReference implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Ticket.php b/src/Model/Ticket.php index 6123f54c..2eb27561 100644 --- a/src/Model/Ticket.php +++ b/src/Model/Ticket.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Ticket implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TicketJiraInner.php b/src/Model/TicketJiraInner.php index d1a4a2f9..681ff5d6 100644 --- a/src/Model/TicketJiraInner.php +++ b/src/Model/TicketJiraInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TicketJiraInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Tree.php b/src/Model/Tree.php index 60f9dd79..ed68c633 100644 --- a/src/Model/Tree.php +++ b/src/Model/Tree.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Tree implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/TreeItemsInner.php b/src/Model/TreeItemsInner.php index 90ede14a..7300fbfe 100644 --- a/src/Model/TreeItemsInner.php +++ b/src/Model/TreeItemsInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class TreeItemsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgAddonsRequest.php b/src/Model/UpdateOrgAddonsRequest.php index 7a4b8b6a..e0166353 100644 --- a/src/Model/UpdateOrgAddonsRequest.php +++ b/src/Model/UpdateOrgAddonsRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgAddonsRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgBillingAlertConfigRequest.php b/src/Model/UpdateOrgBillingAlertConfigRequest.php index 76af2e2e..87ef740f 100644 --- a/src/Model/UpdateOrgBillingAlertConfigRequest.php +++ b/src/Model/UpdateOrgBillingAlertConfigRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgBillingAlertConfigRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgBillingAlertConfigRequestConfig.php b/src/Model/UpdateOrgBillingAlertConfigRequestConfig.php index 8ddc5d08..b962a873 100644 --- a/src/Model/UpdateOrgBillingAlertConfigRequestConfig.php +++ b/src/Model/UpdateOrgBillingAlertConfigRequestConfig.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgBillingAlertConfigRequestConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgMemberRequest.php b/src/Model/UpdateOrgMemberRequest.php index 87e27b52..ae7298f5 100644 --- a/src/Model/UpdateOrgMemberRequest.php +++ b/src/Model/UpdateOrgMemberRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgMemberRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgProfileRequest.php b/src/Model/UpdateOrgProfileRequest.php index c4e14098..a4beb0f1 100644 --- a/src/Model/UpdateOrgProfileRequest.php +++ b/src/Model/UpdateOrgProfileRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgProfileRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgProjectRequest.php b/src/Model/UpdateOrgProjectRequest.php index 4ce91e5b..d8d12a93 100644 --- a/src/Model/UpdateOrgProjectRequest.php +++ b/src/Model/UpdateOrgProjectRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgProjectRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgRequest.php b/src/Model/UpdateOrgRequest.php index b6a2f77a..b7adea4a 100644 --- a/src/Model/UpdateOrgRequest.php +++ b/src/Model/UpdateOrgRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateOrgSubscriptionRequest.php b/src/Model/UpdateOrgSubscriptionRequest.php index 16e93861..5be19ca3 100644 --- a/src/Model/UpdateOrgSubscriptionRequest.php +++ b/src/Model/UpdateOrgSubscriptionRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateOrgSubscriptionRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateProfileRequest.php b/src/Model/UpdateProfileRequest.php index 52da798a..0b79bda7 100644 --- a/src/Model/UpdateProfileRequest.php +++ b/src/Model/UpdateProfileRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateProfileRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateProjectUserAccessRequest.php b/src/Model/UpdateProjectUserAccessRequest.php index 2e77dd2f..a061b417 100644 --- a/src/Model/UpdateProjectUserAccessRequest.php +++ b/src/Model/UpdateProjectUserAccessRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateProjectUserAccessRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.php b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.php index 62bfe30f..7f19f788 100644 --- a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.php +++ b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateProjectsEnvironmentsDeploymentsNextRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.php b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.php index d823462e..8e8bc2c2 100644 --- a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.php +++ b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateProjectsEnvironmentsDeploymentsNextRequestServicesValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.php b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.php index 1a300542..f9951500 100644 --- a/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.php +++ b/src/Model/UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateProjectsEnvironmentsDeploymentsNextRequestWebappsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateSubscriptionUsageAlertsRequest.php b/src/Model/UpdateSubscriptionUsageAlertsRequest.php index 8d4c12b7..58a2d18d 100644 --- a/src/Model/UpdateSubscriptionUsageAlertsRequest.php +++ b/src/Model/UpdateSubscriptionUsageAlertsRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateSubscriptionUsageAlertsRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.php b/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.php index 44d3c057..b71003b1 100644 --- a/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.php +++ b/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInner.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateSubscriptionUsageAlertsRequestAlertsInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.php b/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.php index 661609af..63ec4699 100644 --- a/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.php +++ b/src/Model/UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateSubscriptionUsageAlertsRequestAlertsInnerConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateTeamRequest.php b/src/Model/UpdateTeamRequest.php index 834e0724..0d32e0e2 100644 --- a/src/Model/UpdateTeamRequest.php +++ b/src/Model/UpdateTeamRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateTeamRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateTicketRequest.php b/src/Model/UpdateTicketRequest.php index 1b4816a7..d81ac396 100644 --- a/src/Model/UpdateTicketRequest.php +++ b/src/Model/UpdateTicketRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateTicketRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateUsageAlertsRequest.php b/src/Model/UpdateUsageAlertsRequest.php index b0b1d6d8..f173bc18 100644 --- a/src/Model/UpdateUsageAlertsRequest.php +++ b/src/Model/UpdateUsageAlertsRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateUsageAlertsRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpdateUserRequest.php b/src/Model/UpdateUserRequest.php index a4196d60..14eb5d53 100644 --- a/src/Model/UpdateUserRequest.php +++ b/src/Model/UpdateUserRequest.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpdateUserRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpstreamConfiguration.php b/src/Model/UpstreamConfiguration.php index 3e1de867..cbf70878 100644 --- a/src/Model/UpstreamConfiguration.php +++ b/src/Model/UpstreamConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpstreamConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UpstreamRoute.php b/src/Model/UpstreamRoute.php index 4c5da15e..294c9dd1 100644 --- a/src/Model/UpstreamRoute.php +++ b/src/Model/UpstreamRoute.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UpstreamRoute implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Usage.php b/src/Model/Usage.php index ffe80534..482059cd 100644 --- a/src/Model/Usage.php +++ b/src/Model/Usage.php @@ -13,8 +13,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Usage implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UsageAlert.php b/src/Model/UsageAlert.php index 70bac253..d932829f 100644 --- a/src/Model/UsageAlert.php +++ b/src/Model/UsageAlert.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UsageAlert implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UsageAlertConfig.php b/src/Model/UsageAlertConfig.php index 0957bc83..8bf4227c 100644 --- a/src/Model/UsageAlertConfig.php +++ b/src/Model/UsageAlertConfig.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UsageAlertConfig implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UsageAlertConfigThreshold.php b/src/Model/UsageAlertConfigThreshold.php index 5de4e42e..5bad30ec 100644 --- a/src/Model/UsageAlertConfigThreshold.php +++ b/src/Model/UsageAlertConfigThreshold.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UsageAlertConfigThreshold implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UsageGroupCurrentUsageProperties.php b/src/Model/UsageGroupCurrentUsageProperties.php index 8eaef290..8ba86512 100644 --- a/src/Model/UsageGroupCurrentUsageProperties.php +++ b/src/Model/UsageGroupCurrentUsageProperties.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UsageGroupCurrentUsageProperties implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/User.php b/src/Model/User.php index a74fe5bc..aa6defaf 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class User implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UserProjectAccess.php b/src/Model/UserProjectAccess.php index d20c3ed9..0f65c209 100644 --- a/src/Model/UserProjectAccess.php +++ b/src/Model/UserProjectAccess.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UserProjectAccess implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/UserReference.php b/src/Model/UserReference.php index 74d910a0..bfad9ad4 100644 --- a/src/Model/UserReference.php +++ b/src/Model/UserReference.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class UserReference implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VPNConfiguration.php b/src/Model/VPNConfiguration.php index e635ce02..a51bbb54 100644 --- a/src/Model/VPNConfiguration.php +++ b/src/Model/VPNConfiguration.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VPNConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VerifyPhoneNumber200Response.php b/src/Model/VerifyPhoneNumber200Response.php index 720df1a0..392c5aa3 100644 --- a/src/Model/VerifyPhoneNumber200Response.php +++ b/src/Model/VerifyPhoneNumber200Response.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VerifyPhoneNumber200Response implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VerifyPhoneNumberRequest.php b/src/Model/VerifyPhoneNumberRequest.php index c1ba5ec3..320b56a5 100644 --- a/src/Model/VerifyPhoneNumberRequest.php +++ b/src/Model/VerifyPhoneNumberRequest.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VerifyPhoneNumberRequest implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Version.php b/src/Model/Version.php index 9c766753..04e3d09d 100644 --- a/src/Model/Version.php +++ b/src/Model/Version.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Version implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VersionCreateInput.php b/src/Model/VersionCreateInput.php index f1adfb82..3ea090c1 100644 --- a/src/Model/VersionCreateInput.php +++ b/src/Model/VersionCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VersionCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VersionPatch.php b/src/Model/VersionPatch.php index 79982213..9f7dd6bb 100644 --- a/src/Model/VersionPatch.php +++ b/src/Model/VersionPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VersionPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Vouchers.php b/src/Model/Vouchers.php index 7f580a9b..73936aa1 100644 --- a/src/Model/Vouchers.php +++ b/src/Model/Vouchers.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Vouchers implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VouchersLinks.php b/src/Model/VouchersLinks.php index f4e73719..4cfed62d 100644 --- a/src/Model/VouchersLinks.php +++ b/src/Model/VouchersLinks.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VouchersLinks implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VouchersLinksSelf.php b/src/Model/VouchersLinksSelf.php index e1aa491b..2df29d12 100644 --- a/src/Model/VouchersLinksSelf.php +++ b/src/Model/VouchersLinksSelf.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VouchersLinksSelf implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VouchersVouchersInner.php b/src/Model/VouchersVouchersInner.php index 0fc9299d..0c733e51 100644 --- a/src/Model/VouchersVouchersInner.php +++ b/src/Model/VouchersVouchersInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VouchersVouchersInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/VouchersVouchersInnerOrdersInner.php b/src/Model/VouchersVouchersInnerOrdersInner.php index 95208eb5..ae13b21f 100644 --- a/src/Model/VouchersVouchersInnerOrdersInner.php +++ b/src/Model/VouchersVouchersInnerOrdersInner.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class VouchersVouchersInnerOrdersInner implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebApplicationsValue.php b/src/Model/WebApplicationsValue.php index 3a5988df..50e38fef 100644 --- a/src/Model/WebApplicationsValue.php +++ b/src/Model/WebApplicationsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebApplicationsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebConfiguration.php b/src/Model/WebConfiguration.php index 1a260bad..ca208fcc 100644 --- a/src/Model/WebConfiguration.php +++ b/src/Model/WebConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebHookIntegration.php b/src/Model/WebHookIntegration.php index 09e88079..cfcc0e15 100644 --- a/src/Model/WebHookIntegration.php +++ b/src/Model/WebHookIntegration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebHookIntegration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebHookIntegrationCreateInput.php b/src/Model/WebHookIntegrationCreateInput.php index 2fd48112..910324b5 100644 --- a/src/Model/WebHookIntegrationCreateInput.php +++ b/src/Model/WebHookIntegrationCreateInput.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebHookIntegrationCreateInput implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebHookIntegrationPatch.php b/src/Model/WebHookIntegrationPatch.php index eb82e7aa..b03330e0 100644 --- a/src/Model/WebHookIntegrationPatch.php +++ b/src/Model/WebHookIntegrationPatch.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebHookIntegrationPatch implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WebLocationsValue.php b/src/Model/WebLocationsValue.php index 3fbe9785..c45c1927 100644 --- a/src/Model/WebLocationsValue.php +++ b/src/Model/WebLocationsValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WebLocationsValue implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/Webhook.php b/src/Model/Webhook.php index 9f3d72ad..0bbc8237 100644 --- a/src/Model/Webhook.php +++ b/src/Model/Webhook.php @@ -12,8 +12,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class Webhook implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WorkerConfiguration.php b/src/Model/WorkerConfiguration.php index de3f6391..298684d6 100644 --- a/src/Model/WorkerConfiguration.php +++ b/src/Model/WorkerConfiguration.php @@ -11,8 +11,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WorkerConfiguration implements Model, JsonSerializable { public function __construct( diff --git a/src/Model/WorkersValue.php b/src/Model/WorkersValue.php index 57f168ca..90db9c4f 100644 --- a/src/Model/WorkersValue.php +++ b/src/Model/WorkersValue.php @@ -10,8 +10,7 @@ * @author * @license MIT * @see https://docs.upsun.com - * @generated This file was generated by OpenAPI Generator. Do not edit manually. - */ + * @generated This file was generated by OpenAPI Generator. Do not edit manually. */ final class WorkersValue implements Model, JsonSerializable { public function __construct(