All URIs are relative to https://PSM-IP-addr
Class | Method | HTTP request | Description |
---|---|---|---|
EventsV1Api | get_get_event | GET /events/v1/events/{UUID} | Get specific event |
EventsV1Api | get_get_events1 | GET /events/v1/events | |
EventsV1Api | post_get_events | POST /events/v1/events |
- ApiAggWatchOptions
- ApiKindWatchOptions
- ApiListMeta
- ApiListWatchOptions
- ApiObjectMeta
- ApiObjectRef
- ApiStatus
- ApiStatusResult
- ApiTimestamp
- ApiTypeMeta
- ApiWatchControl
- ApiWatchEvent
- ApiWatchEventList
- EventsEvent
- EventsEventAttributes
- EventsEventList
- EventsEventSource
- EventsGetEventRequest
- GoogleprotobufAny
All endpoints do not require authorization.
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 *