Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed

- Support for discontinued non-managed object storage product. Note: treated as non-breaking change as all users have been migrated to the new managed product

## [2.8.0] - 2025-08-18

### Added
Expand Down
1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ from upcloud_api import Server
from upcloud_api import FirewallRule
from upcloud_api import Network
from upcloud_api import IPAddress
from upcloud_api import ObjectStorage

manager = upcloud_api.CloudManager("username", "password")
```
80 changes: 0 additions & 80 deletions docs/object_storage-mixin.md

This file was deleted.

28 changes: 0 additions & 28 deletions test/json_data/object-storage.json

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions test/json_data/object-storage_post.json

This file was deleted.

78 changes: 0 additions & 78 deletions test/test_object_storage.py

This file was deleted.

1 change: 0 additions & 1 deletion upcloud_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
LoadBalancerNetwork,
)
from upcloud_api.network import Network
from upcloud_api.object_storage import ObjectStorage
from upcloud_api.router import Router
from upcloud_api.server import Server, ServerNetworkInterface, login_user_block
from upcloud_api.server_group import ServerGroup, ServerGroupAffinityPolicy
Expand Down
2 changes: 0 additions & 2 deletions upcloud_api/cloud_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from upcloud_api.cloud_manager.ip_address_mixin import IPManager
from upcloud_api.cloud_manager.lb_mixin import LoadBalancerManager
from upcloud_api.cloud_manager.network_mixin import NetworkManager
from upcloud_api.cloud_manager.object_storage_mixin import ObjectStorageManager
from upcloud_api.cloud_manager.server_mixin import ServerManager
from upcloud_api.cloud_manager.storage_mixin import StorageManager
from upcloud_api.cloud_manager.tag_mixin import TagManager
Expand All @@ -18,7 +17,6 @@ class CloudManager(
IPManager,
LoadBalancerManager,
NetworkManager,
ObjectStorageManager,
ServerManager,
StorageManager,
TagManager,
Expand Down
Loading
Loading