|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | + STACKIT Marketplace API |
| 7 | +
|
| 8 | + API to manage STACKIT Marketplace. |
| 9 | +
|
| 10 | + The version of the OpenAPI document: 1 |
| 11 | + |
| 12 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 13 | +
|
| 14 | + Do not edit the class manually. |
| 15 | +""" # noqa: E501 docstring might be too long |
| 16 | + |
| 17 | + |
| 18 | +__version__ = "1.0.0" |
| 19 | + |
| 20 | +# import apis into sdk package |
| 21 | +from stackit.stackitmarketplace.api.default_api import DefaultApi |
| 22 | +from stackit.stackitmarketplace.api_client import ApiClient |
| 23 | + |
| 24 | +# import ApiClient |
| 25 | +from stackit.stackitmarketplace.api_response import ApiResponse |
| 26 | +from stackit.stackitmarketplace.configuration import HostConfiguration |
| 27 | +from stackit.stackitmarketplace.exceptions import ( |
| 28 | + ApiAttributeError, |
| 29 | + ApiException, |
| 30 | + ApiKeyError, |
| 31 | + ApiTypeError, |
| 32 | + ApiValueError, |
| 33 | + OpenApiException, |
| 34 | +) |
| 35 | + |
| 36 | +# import models into sdk package |
| 37 | +from stackit.stackitmarketplace.models.catalog_pricing_option_highlight import ( |
| 38 | + CatalogPricingOptionHighlight, |
| 39 | +) |
| 40 | +from stackit.stackitmarketplace.models.catalog_product_detail import ( |
| 41 | + CatalogProductDetail, |
| 42 | +) |
| 43 | +from stackit.stackitmarketplace.models.catalog_product_details_vendor import ( |
| 44 | + CatalogProductDetailsVendor, |
| 45 | +) |
| 46 | +from stackit.stackitmarketplace.models.catalog_product_highlight import ( |
| 47 | + CatalogProductHighlight, |
| 48 | +) |
| 49 | +from stackit.stackitmarketplace.models.catalog_product_overview import ( |
| 50 | + CatalogProductOverview, |
| 51 | +) |
| 52 | +from stackit.stackitmarketplace.models.catalog_product_overview_vendor import ( |
| 53 | + CatalogProductOverviewVendor, |
| 54 | +) |
| 55 | +from stackit.stackitmarketplace.models.catalog_product_pricing_option import ( |
| 56 | + CatalogProductPricingOption, |
| 57 | +) |
| 58 | +from stackit.stackitmarketplace.models.catalog_product_support_resource import ( |
| 59 | + CatalogProductSupportResource, |
| 60 | +) |
| 61 | +from stackit.stackitmarketplace.models.catalog_product_vendor_terms import ( |
| 62 | + CatalogProductVendorTerms, |
| 63 | +) |
| 64 | +from stackit.stackitmarketplace.models.current_subscription_state_response import ( |
| 65 | + CurrentSubscriptionStateResponse, |
| 66 | +) |
| 67 | +from stackit.stackitmarketplace.models.error_response import ErrorResponse |
| 68 | +from stackit.stackitmarketplace.models.list_catalog_products_response import ( |
| 69 | + ListCatalogProductsResponse, |
| 70 | +) |
| 71 | +from stackit.stackitmarketplace.models.list_vendor_subscriptions_response import ( |
| 72 | + ListVendorSubscriptionsResponse, |
| 73 | +) |
| 74 | +from stackit.stackitmarketplace.models.requested_subscription_state_response import ( |
| 75 | + RequestedSubscriptionStateResponse, |
| 76 | +) |
| 77 | +from stackit.stackitmarketplace.models.resolve_customer_payload import ( |
| 78 | + ResolveCustomerPayload, |
| 79 | +) |
| 80 | +from stackit.stackitmarketplace.models.subscription_cancel_response import ( |
| 81 | + SubscriptionCancelResponse, |
| 82 | +) |
| 83 | +from stackit.stackitmarketplace.models.subscription_product import SubscriptionProduct |
| 84 | +from stackit.stackitmarketplace.models.vendor_subscription import VendorSubscription |
0 commit comments