Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.82 KB

README.md

File metadata and controls

55 lines (39 loc) · 1.82 KB

Documentation for API Endpoints

All URIs are relative to https://PSM-IP-addr

Class Method HTTP request Description
TokenauthV1Api get_generate_node_token GET /tokenauth/v1/node

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

Notes for Large OpenAPI documents

If the OpenAPI document is large, imports in psm.apis and psm.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1: Use specific imports for apis and models like:

  • from psm.api.default_api import DefaultApi
  • from psm.model.pet import Pet

Solution 1: Before importing the package, adjust the maximum recursion limit as shown below:

import sys
sys.setrecursionlimit(1500)
import psm
from psm.apis import *
from psm.models import *