Skip to content

Commit 0647a60

Browse files
committed
SDK Release v1.47.0-alpha
1 parent 0a662fb commit 0647a60

11 files changed

Lines changed: 18 additions & 12 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To contribute, please raise an issue with a bug report, feature request, feedbac
88
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
99

1010
- API version: 1.0
11-
- Package version: v1.46.4-alpha
11+
- Package version: v1.47.0-alpha
1212
- Generator version: 7.10.0
1313
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1414

docs/ObjectStorageBucketListResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**buckets** | [**List[ObjectStorageBucketResponse]**](ObjectStorageBucketResponse.md) | |
9+
**failed_regions** | **List[str]** | | [optional]
910

1011
## Example
1112

hyperstack/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "v1.46.4-alpha"
17+
__version__ = "v1.47.0-alpha"
1818

1919
# import apis into sdk package
2020
from .api.access_keys_api import AccessKeysApi

hyperstack/__init__.py.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "v1.46.4-alpha"
17+
__version__ = "v1.47.0-alpha"
1818

1919
# import apis into sdk package
2020
from hyperstack.api.access_keys_api import AccessKeysApi

hyperstack/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/v1.46.4-alpha/python'
93+
self.user_agent = 'OpenAPI-Generator/v1.47.0-alpha/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

hyperstack/api_client.py.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class ApiClient:
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/v1.46.4-alpha/python'
93+
self.user_agent = 'OpenAPI-Generator/v1.47.0-alpha/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

hyperstack/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def to_debug_report(self) -> str:
524524
"OS: {env}\n"\
525525
"Python Version: {pyversion}\n"\
526526
"Version of the API: 1.0\n"\
527-
"SDK Package Version: v1.46.4-alpha".\
527+
"SDK Package Version: v1.47.0-alpha".\
528528
format(env=sys.platform, pyversion=sys.version)
529529

530530
def get_host_settings(self) -> List[HostSetting]:

hyperstack/models/object_storage_bucket_list_response.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import re # noqa: F401
1818
import json
1919

20-
from pydantic import BaseModel, ConfigDict
21-
from typing import Any, ClassVar, Dict, List
20+
from pydantic import BaseModel, ConfigDict, StrictStr
21+
from typing import Any, ClassVar, Dict, List, Optional
2222
from ..models.object_storage_bucket_response import ObjectStorageBucketResponse
2323
from typing import Optional, Set
2424
from typing_extensions import Self
@@ -28,7 +28,8 @@ class ObjectStorageBucketListResponse(BaseModel):
2828
ObjectStorageBucketListResponse
2929
""" # noqa: E501
3030
buckets: List[ObjectStorageBucketResponse]
31-
__properties: ClassVar[List[str]] = ["buckets"]
31+
failed_regions: Optional[List[StrictStr]] = None
32+
__properties: ClassVar[List[str]] = ["buckets", "failed_regions"]
3233

3334
model_config = ConfigDict(
3435
populate_by_name=True,
@@ -88,7 +89,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8889
return cls.model_validate(obj)
8990

9091
_obj = cls.model_validate({
91-
"buckets": [ObjectStorageBucketResponse.from_dict(_item) for _item in obj["buckets"]] if obj.get("buckets") is not None else None
92+
"buckets": [ObjectStorageBucketResponse.from_dict(_item) for _item in obj["buckets"]] if obj.get("buckets") is not None else None,
93+
"failed_regions": obj.get("failed_regions")
9294
})
9395
return _obj
9496

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hyperstack"
3-
version = "v1.46.4-alpha"
3+
version = "v1.47.0-alpha"
44
description = "Infrahub-API"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "hyperstack"
24-
VERSION = "v1.46.4-alpha"
24+
VERSION = "v1.47.0-alpha"
2525
PYTHON_REQUIRES = ">= 3.8"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)