All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
version_service_version | GET /api/version | Version returns version information of the API server |
VersionVersionMessage version_service_version()
Version returns version information of the API server
from __future__ import print_function
import time
import argocd
from argocd.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = argocd.VersionServiceApi()
try:
# Version returns version information of the API server
api_response = api_instance.version_service_version()
pprint(api_response)
except ApiException as e:
print("Exception when calling VersionServiceApi->version_service_version: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]