Skip to content

Commit

Permalink
Merge pull request #17 from p-fruck/actions/auto-update-1643912456
Browse files Browse the repository at this point in the history
API-Update: Added `INSTALLED` state to `instance_status`
  • Loading branch information
p-fruck authored Feb 3, 2022
2 parents b8c1e95 + 37d557d commit 8c6fc9c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packageName": "pfruck_contabo",
"projectName": "pfruck_contabo",
"packageUrl": "https://github.com/p-fruck/python-contabo",
"packageVersion": "1.4.2"
"packageVersion": "1.4.3"
}
2 changes: 1 addition & 1 deletion pfruck_contabo/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'Swagger-Codegen/1.4.2/python'
self.user_agent = 'Swagger-Codegen/1.4.3/python'

def __del__(self):
self.pool.close()
Expand Down
2 changes: 1 addition & 1 deletion pfruck_contabo/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 1.0.0\n"\
"SDK Package Version: 1.4.2".\
"SDK Package Version: 1.4.3".\
format(env=sys.platform, pyversion=sys.version)
1 change: 1 addition & 0 deletions pfruck_contabo/models/instance_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class InstanceStatus(object):
ERROR = "error"
INSTALLING = "installing"
UNKNOWN = "unknown"
INSTALLED = "installed"
"""
Attributes:
swagger_types (dict): The key is attribute name
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "pfruck_contabo"
VERSION = "1.4.2"
VERSION = "1.4.3"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 8c6fc9c

Please sign in to comment.