REST/HTTP binding (PSM) for the SysML v2 standard API.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 2020-06
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Python 2.7 and 3.4+
pip install /path/to/sysml_v2_api_client-*.whl
Then import the package:
import sysml_v2_api_client
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import sysml_v2_api_client
from sysml_v2_api_client.rest import ApiException
from pprint import pprint
# Defining host is optional and default to http://localhost
configuration.host = "http://localhost"
# Enter a context with an instance of the API client
with sysml_v2_api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sysml_v2_api_client.CommitApi(api_client)
project_id = 'project_id_example' # str | ID of the project
commit_id = 'commit_id_example' # str | ID of the commit
try:
# Get commit by project and ID
api_response = api_instance.get_commit_by_project_and_id(project_id, commit_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling CommitApi->get_commit_by_project_and_id: %s\n" % e)
All URIs are relative to http://localhost
Class | Method | HTTP request | Description |
---|---|---|---|
CommitApi | get_commit_by_project_and_id | GET /projects/{projectId}/commits/{commitId} | Get commit by project and ID |
CommitApi | get_commits_by_project | GET /projects/{projectId}/commits | Get commits by project |
CommitApi | get_head_commit_by_project | GET /projects/{projectId}/head | Get head commit by project |
CommitApi | post_commit_by_project | POST /projects/{projectId}/commits | Create commit by project |
ElementApi | get_element_by_project_commit_id | GET /projects/{projectId}/commits/{commitId}/elements/{elementId} | Get element by project, commit and ID |
ElementApi | get_elements_by_project_commit | GET /projects/{projectId}/commits/{commitId}/elements | Get elements by project and commit |
ElementApi | get_roots_by_project_commit | GET /projects/{projectId}/commits/{commitId}/roots | Get root elements by project and commit |
ProjectApi | get_project_by_id | GET /projects/{projectId} | Get project by ID |
ProjectApi | get_projects | GET /projects | Get projects |
ProjectApi | post_project | POST /projects | Create project |
RelationshipApi | get_relationships_by_project_commit_related_element | GET /projects/{projectId}/commits/{commitId}/elements/{relatedElementId}/relationships | Get relationships by project, commit, and related element. |
All endpoints do not require authorization.