stackit-objectstorage 1.0.2__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/PKG-INFO +1 -1
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/pyproject.toml +1 -1
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/api_client.py +1 -1
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/configuration.py +6 -2
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/LICENSE.md +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/NOTICE.txt +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/README.md +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/__init__.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/api/__init__.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/api/default_api.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/api_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/exceptions.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/__init__.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/access_key.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/bucket.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/create_access_key_payload.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/create_access_key_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/create_bucket_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/create_credentials_group_payload.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/create_credentials_group_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/credentials_group.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/delete_access_key_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/delete_bucket_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/delete_credentials_group_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/detailed_error.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/error_message.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/get_bucket_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/http_validation_error.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/list_access_keys_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/list_buckets_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/list_credentials_groups_response.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/location_inner.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/project_scope.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/project_status.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/models/validation_error.py +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/py.typed +0 -0
- {stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/rest.py +0 -0
{stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/api_client.py
RENAMED
|
@@ -81,7 +81,7 @@ class ApiClient:
|
|
|
81
81
|
self.default_headers[header_name] = header_value
|
|
82
82
|
self.cookie = cookie
|
|
83
83
|
# Set default User-Agent.
|
|
84
|
-
self.user_agent = "
|
|
84
|
+
self.user_agent = "stackit-sdk-python/objectstorage"
|
|
85
85
|
|
|
86
86
|
def __enter__(self):
|
|
87
87
|
return self
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
import os
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
"""
|
|
4
9
|
STACKIT Object Storage API
|
|
5
10
|
|
|
@@ -11,8 +16,6 @@
|
|
|
11
16
|
Do not edit the class manually.
|
|
12
17
|
""" # noqa: E501 docstring might be too long
|
|
13
18
|
|
|
14
|
-
import os
|
|
15
|
-
|
|
16
19
|
|
|
17
20
|
class HostConfiguration:
|
|
18
21
|
def __init__(
|
|
@@ -29,6 +32,7 @@ class HostConfiguration:
|
|
|
29
32
|
"as a function argument instead of being set in the client configuration.\n"
|
|
30
33
|
"Once all services have migrated, the methods to specify the region in the client configuration "
|
|
31
34
|
"will be removed.",
|
|
35
|
+
file=sys.stderr,
|
|
32
36
|
)
|
|
33
37
|
"""Constructor
|
|
34
38
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/py.typed
RENAMED
|
File without changes
|
{stackit_objectstorage-1.0.2 → stackit_objectstorage-1.0.3}/src/stackit/objectstorage/rest.py
RENAMED
|
File without changes
|