Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.37 KB

VersionServiceApi.md

File metadata and controls

51 lines (34 loc) · 1.37 KB

argocd.VersionServiceApi

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

version_service_version

VersionVersionMessage version_service_version()

Version returns version information of the API server

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

VersionVersionMessage

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]