-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
92 lines (81 loc) · 3.27 KB
/
__init__.py
File metadata and controls
92 lines (81 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# coding: utf-8
# flake8: noqa
"""
STACKIT Server Update Management API
API endpoints for Server Update Operations on STACKIT Servers.
The version of the OpenAPI document: 2.0
Contact: support@stackit.de
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
__version__ = "1.0.0"
# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"CreateUpdatePayload",
"CreateUpdateSchedulePayload",
"EnableServiceResourcePayload",
"ErrorResponse",
"GetUpdatePoliciesResponse",
"GetUpdateSchedulesResponse",
"GetUpdateServiceResponse",
"GetUpdatesListResponse",
"Update",
"UpdatePolicy",
"UpdateSchedule",
"UpdateScheduleCreateRequest",
"UpdateUpdateSchedulePayload",
]
# import apis into sdk package
from stackit.serverupdate.api.default_api import DefaultApi as DefaultApi
from stackit.serverupdate.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.serverupdate.api_response import ApiResponse as ApiResponse
from stackit.serverupdate.configuration import HostConfiguration as HostConfiguration
from stackit.serverupdate.exceptions import ApiAttributeError as ApiAttributeError
from stackit.serverupdate.exceptions import ApiException as ApiException
from stackit.serverupdate.exceptions import ApiKeyError as ApiKeyError
from stackit.serverupdate.exceptions import ApiTypeError as ApiTypeError
from stackit.serverupdate.exceptions import ApiValueError as ApiValueError
from stackit.serverupdate.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.serverupdate.models.create_update_payload import (
CreateUpdatePayload as CreateUpdatePayload,
)
from stackit.serverupdate.models.create_update_schedule_payload import (
CreateUpdateSchedulePayload as CreateUpdateSchedulePayload,
)
from stackit.serverupdate.models.enable_service_resource_payload import (
EnableServiceResourcePayload as EnableServiceResourcePayload,
)
from stackit.serverupdate.models.error_response import ErrorResponse as ErrorResponse
from stackit.serverupdate.models.get_update_policies_response import (
GetUpdatePoliciesResponse as GetUpdatePoliciesResponse,
)
from stackit.serverupdate.models.get_update_schedules_response import (
GetUpdateSchedulesResponse as GetUpdateSchedulesResponse,
)
from stackit.serverupdate.models.get_update_service_response import (
GetUpdateServiceResponse as GetUpdateServiceResponse,
)
from stackit.serverupdate.models.get_updates_list_response import (
GetUpdatesListResponse as GetUpdatesListResponse,
)
from stackit.serverupdate.models.update import Update as Update
from stackit.serverupdate.models.update_policy import UpdatePolicy as UpdatePolicy
from stackit.serverupdate.models.update_schedule import UpdateSchedule as UpdateSchedule
from stackit.serverupdate.models.update_schedule_create_request import (
UpdateScheduleCreateRequest as UpdateScheduleCreateRequest,
)
from stackit.serverupdate.models.update_update_schedule_payload import (
UpdateUpdateSchedulePayload as UpdateUpdateSchedulePayload,
)