step_rest_client 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- step_rest_client-1.0.0/PKG-INFO +23 -0
- step_rest_client-1.0.0/README.md +363 -0
- step_rest_client-1.0.0/pyproject.toml +89 -0
- step_rest_client-1.0.0/setup.cfg +7 -0
- step_rest_client-1.0.0/setup.py +49 -0
- step_rest_client-1.0.0/step_rest_client/__init__.py +136 -0
- step_rest_client-1.0.0/step_rest_client/api/__init__.py +26 -0
- step_rest_client-1.0.0/step_rest_client/api/assets_api.py +7960 -0
- step_rest_client-1.0.0/step_rest_client/api/attributes_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/background_process_types_api.py +640 -0
- step_rest_client-1.0.0/step_rest_client/api/background_processes_api.py +1577 -0
- step_rest_client-1.0.0/step_rest_client/api/classifications_api.py +7991 -0
- step_rest_client-1.0.0/step_rest_client/api/data_container_types_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/data_type_groups_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/entities_api.py +8680 -0
- step_rest_client-1.0.0/step_rest_client/api/event_processors_api.py +3337 -0
- step_rest_client-1.0.0/step_rest_client/api/export_api.py +383 -0
- step_rest_client-1.0.0/step_rest_client/api/gateway_integration_endpoints_api.py +1232 -0
- step_rest_client-1.0.0/step_rest_client/api/import_api.py +390 -0
- step_rest_client-1.0.0/step_rest_client/api/inbound_integration_endpoints_api.py +2815 -0
- step_rest_client-1.0.0/step_rest_client/api/lists_of_values_api.py +642 -0
- step_rest_client-1.0.0/step_rest_client/api/object_types_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/outbound_integration_endpoints_api.py +3655 -0
- step_rest_client-1.0.0/step_rest_client/api/products_api.py +8007 -0
- step_rest_client-1.0.0/step_rest_client/api/reference_types_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/reporting_api.py +707 -0
- step_rest_client-1.0.0/step_rest_client/api/units_api.py +340 -0
- step_rest_client-1.0.0/step_rest_client/api/workflow_tasks_api.py +1887 -0
- step_rest_client-1.0.0/step_rest_client/api/workflows_api.py +1270 -0
- step_rest_client-1.0.0/step_rest_client/api_client.py +797 -0
- step_rest_client-1.0.0/step_rest_client/api_response.py +21 -0
- step_rest_client-1.0.0/step_rest_client/configuration.py +597 -0
- step_rest_client-1.0.0/step_rest_client/exceptions.py +216 -0
- step_rest_client-1.0.0/step_rest_client/models/__init__.py +98 -0
- step_rest_client-1.0.0/step_rest_client/models/amount.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/and_condition.py +107 -0
- step_rest_client-1.0.0/step_rest_client/models/approval_response.py +87 -0
- step_rest_client-1.0.0/step_rest_client/models/approval_status.py +99 -0
- step_rest_client-1.0.0/step_rest_client/models/asset.py +129 -0
- step_rest_client-1.0.0/step_rest_client/models/attribute.py +120 -0
- step_rest_client-1.0.0/step_rest_client/models/attribute_link.py +102 -0
- step_rest_client-1.0.0/step_rest_client/models/background_process.py +139 -0
- step_rest_client-1.0.0/step_rest_client/models/background_process_attachment_metadata.py +105 -0
- step_rest_client-1.0.0/step_rest_client/models/background_process_identification.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/background_process_type.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/classification.py +135 -0
- step_rest_client-1.0.0/step_rest_client/models/condition.py +265 -0
- step_rest_client-1.0.0/step_rest_client/models/data_container.py +139 -0
- step_rest_client-1.0.0/step_rest_client/models/data_container_entry.py +117 -0
- step_rest_client-1.0.0/step_rest_client/models/data_container_object_condition.py +181 -0
- step_rest_client-1.0.0/step_rest_client/models/data_container_type.py +106 -0
- step_rest_client-1.0.0/step_rest_client/models/data_type_group.py +108 -0
- step_rest_client-1.0.0/step_rest_client/models/endpoint_statistics.py +109 -0
- step_rest_client-1.0.0/step_rest_client/models/endpoint_status.py +99 -0
- step_rest_client-1.0.0/step_rest_client/models/entity.py +142 -0
- step_rest_client-1.0.0/step_rest_client/models/error.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/event_processor.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/event_processor_statistics.py +97 -0
- step_rest_client-1.0.0/step_rest_client/models/event_processor_status.py +99 -0
- step_rest_client-1.0.0/step_rest_client/models/event_queue_status.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/execution_report_entry.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/export_specification.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/find_similar_business_rule_result.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/find_similar_entities_request.py +95 -0
- step_rest_client-1.0.0/step_rest_client/models/find_similar_entities_response.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/find_similar_entities_response_record.py +95 -0
- step_rest_client-1.0.0/step_rest_client/models/find_similar_execution_report.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/gateway_integration_endpoint.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/has_data_container_object_condition.py +106 -0
- step_rest_client-1.0.0/step_rest_client/models/has_reference_to_condition.py +108 -0
- step_rest_client-1.0.0/step_rest_client/models/id_condition.py +105 -0
- step_rest_client-1.0.0/step_rest_client/models/inbound_integration_endpoint.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/incoming_reference_entry.py +118 -0
- step_rest_client-1.0.0/step_rest_client/models/list_of_values.py +110 -0
- step_rest_client-1.0.0/step_rest_client/models/list_of_values_entry.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/lov_value_condition.py +100 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_execution_report.py +119 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_general_execution_report.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_potential_duplicate.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_record_in.py +95 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_record_out.py +117 -0
- step_rest_client-1.0.0/step_rest_client/models/match_and_merge_response.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/multi_data_container.py +101 -0
- step_rest_client-1.0.0/step_rest_client/models/multi_reference.py +97 -0
- step_rest_client-1.0.0/step_rest_client/models/multi_value.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/name_condition.py +107 -0
- step_rest_client-1.0.0/step_rest_client/models/numeric_value_condition.py +111 -0
- step_rest_client-1.0.0/step_rest_client/models/object_type.py +104 -0
- step_rest_client-1.0.0/step_rest_client/models/object_type_condition.py +96 -0
- step_rest_client-1.0.0/step_rest_client/models/or_condition.py +107 -0
- step_rest_client-1.0.0/step_rest_client/models/outbound_integration_endpoint.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/product.py +150 -0
- step_rest_client-1.0.0/step_rest_client/models/query.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/query_result.py +99 -0
- step_rest_client-1.0.0/step_rest_client/models/reference.py +139 -0
- step_rest_client-1.0.0/step_rest_client/models/reference_entry.py +141 -0
- step_rest_client-1.0.0/step_rest_client/models/reference_metadata_condition.py +181 -0
- step_rest_client-1.0.0/step_rest_client/models/reference_type.py +114 -0
- step_rest_client-1.0.0/step_rest_client/models/rejected_by_business_condition.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/simple_below_condition.py +105 -0
- step_rest_client-1.0.0/step_rest_client/models/single_data_container.py +97 -0
- step_rest_client-1.0.0/step_rest_client/models/single_reference.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/single_value.py +103 -0
- step_rest_client-1.0.0/step_rest_client/models/status_flag.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/text_value_condition.py +111 -0
- step_rest_client-1.0.0/step_rest_client/models/trigger_workflow_event.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/unit.py +104 -0
- step_rest_client-1.0.0/step_rest_client/models/value.py +137 -0
- step_rest_client-1.0.0/step_rest_client/models/value_entry.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow.py +91 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_event.py +89 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_instance.py +87 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_instance_creation.py +93 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_node.py +99 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_task.py +113 -0
- step_rest_client-1.0.0/step_rest_client/models/workflow_task_query.py +101 -0
- step_rest_client-1.0.0/step_rest_client/py.typed +0 -0
- step_rest_client-1.0.0/step_rest_client/rest.py +258 -0
- step_rest_client-1.0.0/step_rest_client.egg-info/PKG-INFO +23 -0
- step_rest_client-1.0.0/step_rest_client.egg-info/SOURCES.txt +226 -0
- step_rest_client-1.0.0/step_rest_client.egg-info/dependency_links.txt +1 -0
- step_rest_client-1.0.0/step_rest_client.egg-info/requires.txt +4 -0
- step_rest_client-1.0.0/step_rest_client.egg-info/top_level.txt +1 -0
- step_rest_client-1.0.0/test/test_amount.py +51 -0
- step_rest_client-1.0.0/test/test_and_condition.py +60 -0
- step_rest_client-1.0.0/test/test_approval_response.py +53 -0
- step_rest_client-1.0.0/test/test_approval_status.py +51 -0
- step_rest_client-1.0.0/test/test_asset.py +65 -0
- step_rest_client-1.0.0/test/test_assets_api.py +192 -0
- step_rest_client-1.0.0/test/test_attribute.py +66 -0
- step_rest_client-1.0.0/test/test_attribute_link.py +54 -0
- step_rest_client-1.0.0/test/test_attributes_api.py +38 -0
- step_rest_client-1.0.0/test/test_background_process.py +61 -0
- step_rest_client-1.0.0/test/test_background_process_attachment_metadata.py +55 -0
- step_rest_client-1.0.0/test/test_background_process_identification.py +51 -0
- step_rest_client-1.0.0/test/test_background_process_type.py +51 -0
- step_rest_client-1.0.0/test/test_background_process_types_api.py +45 -0
- step_rest_client-1.0.0/test/test_background_processes_api.py +66 -0
- step_rest_client-1.0.0/test/test_classification.py +67 -0
- step_rest_client-1.0.0/test/test_classifications_api.py +192 -0
- step_rest_client-1.0.0/test/test_condition.py +89 -0
- step_rest_client-1.0.0/test/test_data_container.py +67 -0
- step_rest_client-1.0.0/test/test_data_container_entry.py +56 -0
- step_rest_client-1.0.0/test/test_data_container_object_condition.py +73 -0
- step_rest_client-1.0.0/test/test_data_container_type.py +56 -0
- step_rest_client-1.0.0/test/test_data_container_types_api.py +38 -0
- step_rest_client-1.0.0/test/test_data_type_group.py +56 -0
- step_rest_client-1.0.0/test/test_data_type_groups_api.py +38 -0
- step_rest_client-1.0.0/test/test_endpoint_statistics.py +56 -0
- step_rest_client-1.0.0/test/test_endpoint_status.py +51 -0
- step_rest_client-1.0.0/test/test_entities_api.py +206 -0
- step_rest_client-1.0.0/test/test_entity.py +63 -0
- step_rest_client-1.0.0/test/test_error.py +53 -0
- step_rest_client-1.0.0/test/test_event_processor.py +52 -0
- step_rest_client-1.0.0/test/test_event_processor_statistics.py +53 -0
- step_rest_client-1.0.0/test/test_event_processor_status.py +51 -0
- step_rest_client-1.0.0/test/test_event_processors_api.py +108 -0
- step_rest_client-1.0.0/test/test_event_queue_status.py +51 -0
- step_rest_client-1.0.0/test/test_execution_report_entry.py +52 -0
- step_rest_client-1.0.0/test/test_export_api.py +38 -0
- step_rest_client-1.0.0/test/test_export_specification.py +54 -0
- step_rest_client-1.0.0/test/test_find_similar_business_rule_result.py +55 -0
- step_rest_client-1.0.0/test/test_find_similar_entities_request.py +65 -0
- step_rest_client-1.0.0/test/test_find_similar_entities_response.py +81 -0
- step_rest_client-1.0.0/test/test_find_similar_entities_response_record.py +65 -0
- step_rest_client-1.0.0/test/test_find_similar_execution_report.py +62 -0
- step_rest_client-1.0.0/test/test_gateway_integration_endpoint.py +52 -0
- step_rest_client-1.0.0/test/test_gateway_integration_endpoints_api.py +59 -0
- step_rest_client-1.0.0/test/test_has_data_container_object_condition.py +57 -0
- step_rest_client-1.0.0/test/test_has_reference_to_condition.py +58 -0
- step_rest_client-1.0.0/test/test_id_condition.py +56 -0
- step_rest_client-1.0.0/test/test_import_api.py +38 -0
- step_rest_client-1.0.0/test/test_inbound_integration_endpoint.py +52 -0
- step_rest_client-1.0.0/test/test_inbound_integration_endpoints_api.py +94 -0
- step_rest_client-1.0.0/test/test_incoming_reference_entry.py +55 -0
- step_rest_client-1.0.0/test/test_list_of_values.py +57 -0
- step_rest_client-1.0.0/test/test_list_of_values_entry.py +53 -0
- step_rest_client-1.0.0/test/test_lists_of_values_api.py +45 -0
- step_rest_client-1.0.0/test/test_lov_value_condition.py +57 -0
- step_rest_client-1.0.0/test/test_match_and_merge_execution_report.py +58 -0
- step_rest_client-1.0.0/test/test_match_and_merge_general_execution_report.py +53 -0
- step_rest_client-1.0.0/test/test_match_and_merge_potential_duplicate.py +65 -0
- step_rest_client-1.0.0/test/test_match_and_merge_record_in.py +65 -0
- step_rest_client-1.0.0/test/test_match_and_merge_record_out.py +93 -0
- step_rest_client-1.0.0/test/test_match_and_merge_response.py +91 -0
- step_rest_client-1.0.0/test/test_multi_data_container.py +60 -0
- step_rest_client-1.0.0/test/test_multi_reference.py +73 -0
- step_rest_client-1.0.0/test/test_multi_value.py +58 -0
- step_rest_client-1.0.0/test/test_name_condition.py +57 -0
- step_rest_client-1.0.0/test/test_numeric_value_condition.py +60 -0
- step_rest_client-1.0.0/test/test_object_type.py +55 -0
- step_rest_client-1.0.0/test/test_object_type_condition.py +54 -0
- step_rest_client-1.0.0/test/test_object_types_api.py +38 -0
- step_rest_client-1.0.0/test/test_or_condition.py +60 -0
- step_rest_client-1.0.0/test/test_outbound_integration_endpoint.py +52 -0
- step_rest_client-1.0.0/test/test_outbound_integration_endpoints_api.py +115 -0
- step_rest_client-1.0.0/test/test_product.py +70 -0
- step_rest_client-1.0.0/test/test_products_api.py +192 -0
- step_rest_client-1.0.0/test/test_query.py +54 -0
- step_rest_client-1.0.0/test/test_query_result.py +52 -0
- step_rest_client-1.0.0/test/test_reference.py +91 -0
- step_rest_client-1.0.0/test/test_reference_entry.py +73 -0
- step_rest_client-1.0.0/test/test_reference_metadata_condition.py +73 -0
- step_rest_client-1.0.0/test/test_reference_type.py +63 -0
- step_rest_client-1.0.0/test/test_reference_types_api.py +38 -0
- step_rest_client-1.0.0/test/test_rejected_by_business_condition.py +52 -0
- step_rest_client-1.0.0/test/test_reporting_api.py +45 -0
- step_rest_client-1.0.0/test/test_simple_below_condition.py +56 -0
- step_rest_client-1.0.0/test/test_single_data_container.py +58 -0
- step_rest_client-1.0.0/test/test_single_reference.py +71 -0
- step_rest_client-1.0.0/test/test_single_value.py +57 -0
- step_rest_client-1.0.0/test/test_status_flag.py +52 -0
- step_rest_client-1.0.0/test/test_text_value_condition.py +60 -0
- step_rest_client-1.0.0/test/test_trigger_workflow_event.py +54 -0
- step_rest_client-1.0.0/test/test_unit.py +55 -0
- step_rest_client-1.0.0/test/test_units_api.py +38 -0
- step_rest_client-1.0.0/test/test_value.py +63 -0
- step_rest_client-1.0.0/test/test_value_entry.py +53 -0
- step_rest_client-1.0.0/test/test_workflow.py +55 -0
- step_rest_client-1.0.0/test/test_workflow_event.py +52 -0
- step_rest_client-1.0.0/test/test_workflow_instance.py +51 -0
- step_rest_client-1.0.0/test/test_workflow_instance_creation.py +54 -0
- step_rest_client-1.0.0/test/test_workflow_node.py +52 -0
- step_rest_client-1.0.0/test/test_workflow_task.py +64 -0
- step_rest_client-1.0.0/test/test_workflow_task_query.py +58 -0
- step_rest_client-1.0.0/test/test_workflow_tasks_api.py +73 -0
- step_rest_client-1.0.0/test/test_workflows_api.py +59 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: step-rest-client
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: STEP REST API V2
|
5
|
+
Home-page:
|
6
|
+
Author: OpenAPI Generator community
|
7
|
+
Author-email: team@openapitools.org
|
8
|
+
Keywords: OpenAPI,OpenAPI-Generator,STEP REST API V2
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
Requires-Dist: urllib3<3.0.0,>=1.25.3
|
11
|
+
Requires-Dist: python-dateutil>=2.8.2
|
12
|
+
Requires-Dist: pydantic>=2
|
13
|
+
Requires-Dist: typing-extensions>=4.7.1
|
14
|
+
Dynamic: author
|
15
|
+
Dynamic: author-email
|
16
|
+
Dynamic: description
|
17
|
+
Dynamic: description-content-type
|
18
|
+
Dynamic: keywords
|
19
|
+
Dynamic: requires-dist
|
20
|
+
Dynamic: summary
|
21
|
+
|
22
|
+
<h1>About</h1><p>The STEP REST API V2 provides read and write access to a set of core STEP objects using the HTTP operations GET, PUT, POST, PATCH and DELETE.</p><h1>Resource Representation</h1><p>With the exception of a few resource operations for retrieving and uploading binary data, all request and response bodies are JSON, compliant with the schema documented here.</p><h1>Context and Workspace</h1><p>All requests are handled in a specific STEP context and workspace and both can be specified via query parameters available for all resource operations. A context must always be specified while requests per default will be handled in the &quot;Main&quot; workspace.</p><h1>Polymorphism</h1><p>In STEP, attributes, reference types and data container types can all be either single- or multivalued. The STEP REST API V2 uses polymorphism to address this complexity with resources that include values, references and data containers specified to produce and consume a common &quot;abstract&quot; supertype that always will be one of either the single- or multivalued subtype.<br/>As an example, the GET /entities/{id}/values/{attributeId} resource operation is specified to return a &quot;Value&quot; but as evident from the model, the &quot;Value&quot; will always be &quot;oneOf&quot; either &quot;SingleValue&quot;, that has a &quot;value&quot; property for which the value is an object, or &quot;MultiValue&quot;, that has a &quot;values&quot; property for which the value is an array.<br/>Clients are advised to use the presence or absence of the plural array property (&quot;values&quot;, &quot;references&quot; and &quot;dataContainers&quot;) to determine the concrete type.</p><h1>Authentication</h1><p>The REST API is protected by HTTP Basic Authentication or if OAuth2-based authentication is enabled (SaaS customers only), by Bearer Authentication. With Basic Authentication, user name and password are supplied with each request and it is therefore highly recommended to only use the API in conjunction with HTTPS. For more information about OAuth2-based authentication for SaaS customers, please see the STEP Authentication Guide.</p><h1>Versioning</h1><p>The STEP REST API V2 is versioned using semantic versioning. Stibo Systems reserve the right to make non-breaking, minor / patch changes in any release without warning and clients must be coded / configured to be 'tolerant' and capable of handling such changes.</p><p>Examples of breaking, major changes:</p><ul><li>Renaming of a property</li><li>Removal of a property</li><li>Property type change</li><li>Addition of new property required for write operations</li><li>Marking existing property as required for write operations</li><li>Removal of resource or resource operation</li><li>Materially different behavior for existing resource operation</li></ul><p>Examples of non-breaking, minor / patch changes:</p><ul><li>Addition of new properties in request responses</li><li>Addition of new query parameter not required for write operations</li><li>Addition of new resource or resource operation</li><li>Bug fixes that do not change the schema or resource operations as described here</li><li>Inclusion of a response body for resource operations specified to return a 200 response with no body</li><li>Change of response &quot;Model&quot; / &quot;schema&quot; to type extending the previously specified type</li><li>Renaming a &quot;Model&quot; / &quot;schema&quot; type</li></ul><p>In addition, error message texts may change without warning within the same version. Client program logic should not depend upon the message content.</p><h1>Error Handling</h1><p>The STEP REST API V2 responds with standard HTTP status codes, with 2** responses indicating a success, 4** responses indicating a client error and 5** indicating a server error. Notice that this specification does not specify common error responses like 500 (internal server error) or 401 (unauthorized) for the individual resource operations. Clients should however be capable of handling such responses.</p><p>Error responses have a JSON response body (see Error schema below) containing HTTP status code information in addition to a message providing details about the error. As mentioned above, client program logic should not depend upon the message content.</p><p>The specific status codes used in the API are:</p><ul><li>200 (OK): Success, response may or may not have a body</li><li>201 (Created): Entity successfully created, response may or may not have a body</li><li>400 (Bad request): The server cannot or will not process the request due to an apparent client error</li><li>401 (Unauthorized): Returned only in relation to failed authentication</li><li>404 (Not Found): Returned only in relation to objects specified via path parameters (variable parts of the URL). If STEP objects referenced in request bodies or via query parameters cannot be found, the response will be 400.</li><li>429 (Too Many Requests): Clients are per default limited to 100 requests per second. Returned if the rate limit is exceeded.</li><li>500 (Internal Server Error): Unexpected error (could potentially cover an issue that rightfully should be a 400)</li></ul>
|
23
|
+
|
@@ -0,0 +1,363 @@
|
|
1
|
+
# step-rest-client
|
2
|
+
<h1>About</h1><p>The STEP REST API V2 provides read and write access to a set of core STEP objects using the HTTP operations GET, PUT, POST, PATCH and DELETE.</p><h1>Resource Representation</h1><p>With the exception of a few resource operations for retrieving and uploading binary data, all request and response bodies are JSON, compliant with the schema documented here.</p><h1>Context and Workspace</h1><p>All requests are handled in a specific STEP context and workspace and both can be specified via query parameters available for all resource operations. A context must always be specified while requests per default will be handled in the "Main" workspace.</p><h1>Polymorphism</h1><p>In STEP, attributes, reference types and data container types can all be either single- or multivalued. The STEP REST API V2 uses polymorphism to address this complexity with resources that include values, references and data containers specified to produce and consume a common "abstract" supertype that always will be one of either the single- or multivalued subtype.<br/>As an example, the GET /entities/{id}/values/{attributeId} resource operation is specified to return a "Value" but as evident from the model, the "Value" will always be "oneOf" either "SingleValue", that has a "value" property for which the value is an object, or "MultiValue", that has a "values" property for which the value is an array.<br/>Clients are advised to use the presence or absence of the plural array property ("values", "references" and "dataContainers") to determine the concrete type.</p><h1>Authentication</h1><p>The REST API is protected by HTTP Basic Authentication or if OAuth2-based authentication is enabled (SaaS customers only), by Bearer Authentication. With Basic Authentication, user name and password are supplied with each request and it is therefore highly recommended to only use the API in conjunction with HTTPS. For more information about OAuth2-based authentication for SaaS customers, please see the STEP Authentication Guide.</p><h1>Versioning</h1><p>The STEP REST API V2 is versioned using semantic versioning. Stibo Systems reserve the right to make non-breaking, minor / patch changes in any release without warning and clients must be coded / configured to be 'tolerant' and capable of handling such changes.</p><p>Examples of breaking, major changes:</p><ul><li>Renaming of a property</li><li>Removal of a property</li><li>Property type change</li><li>Addition of new property required for write operations</li><li>Marking existing property as required for write operations</li><li>Removal of resource or resource operation</li><li>Materially different behavior for existing resource operation</li></ul><p>Examples of non-breaking, minor / patch changes:</p><ul><li>Addition of new properties in request responses</li><li>Addition of new query parameter not required for write operations</li><li>Addition of new resource or resource operation</li><li>Bug fixes that do not change the schema or resource operations as described here</li><li>Inclusion of a response body for resource operations specified to return a 200 response with no body</li><li>Change of response "Model" / "schema" to type extending the previously specified type</li><li>Renaming a "Model" / "schema" type</li></ul><p>In addition, error message texts may change without warning within the same version. Client program logic should not depend upon the message content.</p><h1>Error Handling</h1><p>The STEP REST API V2 responds with standard HTTP status codes, with 2** responses indicating a success, 4** responses indicating a client error and 5** indicating a server error. Notice that this specification does not specify common error responses like 500 (internal server error) or 401 (unauthorized) for the individual resource operations. Clients should however be capable of handling such responses.</p><p>Error responses have a JSON response body (see Error schema below) containing HTTP status code information in addition to a message providing details about the error. As mentioned above, client program logic should not depend upon the message content.</p><p>The specific status codes used in the API are:</p><ul><li>200 (OK): Success, response may or may not have a body</li><li>201 (Created): Entity successfully created, response may or may not have a body</li><li>400 (Bad request): The server cannot or will not process the request due to an apparent client error</li><li>401 (Unauthorized): Returned only in relation to failed authentication</li><li>404 (Not Found): Returned only in relation to objects specified via path parameters (variable parts of the URL). If STEP objects referenced in request bodies or via query parameters cannot be found, the response will be 400.</li><li>429 (Too Many Requests): Clients are per default limited to 100 requests per second. Returned if the rate limit is exceeded.</li><li>500 (Internal Server Error): Unexpected error (could potentially cover an issue that rightfully should be a 400)</li></ul>
|
3
|
+
|
4
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
5
|
+
|
6
|
+
- API version: 1.3.0
|
7
|
+
- Package version: 1.0.0
|
8
|
+
- Generator version: 7.12.0
|
9
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
10
|
+
|
11
|
+
## Requirements.
|
12
|
+
|
13
|
+
Python 3.8+
|
14
|
+
|
15
|
+
## Installation & Usage
|
16
|
+
### pip install
|
17
|
+
|
18
|
+
If the python package is hosted on a repository, you can install directly using:
|
19
|
+
|
20
|
+
```sh
|
21
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
22
|
+
```
|
23
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
24
|
+
|
25
|
+
Then import the package:
|
26
|
+
```python
|
27
|
+
import step_rest_client
|
28
|
+
```
|
29
|
+
|
30
|
+
### Setuptools
|
31
|
+
|
32
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
33
|
+
|
34
|
+
```sh
|
35
|
+
python setup.py install --user
|
36
|
+
```
|
37
|
+
(or `sudo python setup.py install` to install the package for all users)
|
38
|
+
|
39
|
+
Then import the package:
|
40
|
+
```python
|
41
|
+
import step_rest_client
|
42
|
+
```
|
43
|
+
|
44
|
+
### Tests
|
45
|
+
|
46
|
+
Execute `pytest` to run the tests.
|
47
|
+
|
48
|
+
## Getting Started
|
49
|
+
|
50
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
51
|
+
|
52
|
+
```python
|
53
|
+
|
54
|
+
import step_rest_client
|
55
|
+
from step_rest_client.rest import ApiException
|
56
|
+
from pprint import pprint
|
57
|
+
|
58
|
+
# Defining the host is optional and defaults to /restapiv2
|
59
|
+
# See configuration.py for a list of all supported configuration parameters.
|
60
|
+
configuration = step_rest_client.Configuration(
|
61
|
+
host = "/restapiv2"
|
62
|
+
)
|
63
|
+
|
64
|
+
# The client must configure the authentication and authorization parameters
|
65
|
+
# in accordance with the API server security policy.
|
66
|
+
# Examples for each auth method are provided below, use the example that
|
67
|
+
# satisfies your auth use case.
|
68
|
+
|
69
|
+
# Configure HTTP basic authorization: basicAuth
|
70
|
+
configuration = step_rest_client.Configuration(
|
71
|
+
username = os.environ["USERNAME"],
|
72
|
+
password = os.environ["PASSWORD"]
|
73
|
+
)
|
74
|
+
|
75
|
+
|
76
|
+
# Enter a context with an instance of the API client
|
77
|
+
with step_rest_client.ApiClient(configuration) as api_client:
|
78
|
+
# Create an instance of the API class
|
79
|
+
api_instance = step_rest_client.AssetsApi(api_client)
|
80
|
+
id = 'id_example' # str | ID / key value of the asset for which to get the approval status
|
81
|
+
context = 'context_example' # str | ID of the context in which to perform the operation
|
82
|
+
key_id = 'key_id_example' # str | ID of the key definition to be used for identifying the asset. If supplied, a key value should be supplied for the \"id\" path parameter. (optional)
|
83
|
+
workspace = 'Main' # str | ID of the workspace in which to perform the operation. Defaults to \"Main\". (optional) (default to 'Main')
|
84
|
+
|
85
|
+
try:
|
86
|
+
# Returns the approval status of the asset with the specified ID / key value
|
87
|
+
api_response = api_instance.assets_id_approval_status_get(id, context, key_id=key_id, workspace=workspace)
|
88
|
+
print("The response of AssetsApi->assets_id_approval_status_get:\n")
|
89
|
+
pprint(api_response)
|
90
|
+
except ApiException as e:
|
91
|
+
print("Exception when calling AssetsApi->assets_id_approval_status_get: %s\n" % e)
|
92
|
+
|
93
|
+
```
|
94
|
+
|
95
|
+
## Documentation for API Endpoints
|
96
|
+
|
97
|
+
All URIs are relative to */restapiv2*
|
98
|
+
|
99
|
+
Class | Method | HTTP request | Description
|
100
|
+
------------ | ------------- | ------------- | -------------
|
101
|
+
*AssetsApi* | [**assets_id_approval_status_get**](docs/AssetsApi.md#assets_id_approval_status_get) | **GET** /assets/{id}/approval-status | Returns the approval status of the asset with the specified ID / key value
|
102
|
+
*AssetsApi* | [**assets_id_approve_delete_post**](docs/AssetsApi.md#assets_id_approve_delete_post) | **POST** /assets/{id}/approve-delete | Approve deletes the asset with the specified ID
|
103
|
+
*AssetsApi* | [**assets_id_approve_post**](docs/AssetsApi.md#assets_id_approve_post) | **POST** /assets/{id}/approve | Approves the asset with the specified ID / key value
|
104
|
+
*AssetsApi* | [**assets_id_content_get**](docs/AssetsApi.md#assets_id_content_get) | **GET** /assets/{id}/content | Returns asset content for the asset with the specified ID / key value
|
105
|
+
*AssetsApi* | [**assets_id_content_put**](docs/AssetsApi.md#assets_id_content_put) | **PUT** /assets/{id}/content | Replaces asset content
|
106
|
+
*AssetsApi* | [**assets_id_delete**](docs/AssetsApi.md#assets_id_delete) | **DELETE** /assets/{id} | Deletes the asset with the specified ID / key value
|
107
|
+
*AssetsApi* | [**assets_id_get**](docs/AssetsApi.md#assets_id_get) | **GET** /assets/{id} | Returns the asset with the specified ID / key value
|
108
|
+
*AssetsApi* | [**assets_id_incoming_references_reference_type_id_get**](docs/AssetsApi.md#assets_id_incoming_references_reference_type_id_get) | **GET** /assets/{id}/incoming-references/{referenceTypeId} | Returns stream of incoming references of the specified type
|
109
|
+
*AssetsApi* | [**assets_id_patch**](docs/AssetsApi.md#assets_id_patch) | **PATCH** /assets/{id} | Partially updates an asset
|
110
|
+
*AssetsApi* | [**assets_id_purge_post**](docs/AssetsApi.md#assets_id_purge_post) | **POST** /assets/{id}/purge | Purges the asset with the specified ID from recycle bin
|
111
|
+
*AssetsApi* | [**assets_id_put**](docs/AssetsApi.md#assets_id_put) | **PUT** /assets/{id} | Creates or replaces asset with known ID
|
112
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_get**](docs/AssetsApi.md#assets_id_references_reference_type_id_get) | **GET** /assets/{id}/references/{referenceTypeId} | Returns reference(s) of the specified type
|
113
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_delete**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_delete) | **DELETE** /assets/{id}/references/{referenceTypeId}/{targetId} | Deletes the reference
|
114
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_get**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_get) | **GET** /assets/{id}/references/{referenceTypeId}/{targetId} | Returns a specific reference
|
115
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_put**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_put) | **PUT** /assets/{id}/references/{referenceTypeId}/{targetId} | Replaces a reference
|
116
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_values_attribute_id_delete**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_values_attribute_id_delete) | **DELETE** /assets/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Deletes the value for a reference metadata attribute
|
117
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_values_attribute_id_get**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_values_attribute_id_get) | **GET** /assets/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Returns the value for a reference metadata attribute
|
118
|
+
*AssetsApi* | [**assets_id_references_reference_type_id_target_id_values_attribute_id_put**](docs/AssetsApi.md#assets_id_references_reference_type_id_target_id_values_attribute_id_put) | **PUT** /assets/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Replaces the value for a reference metadata attribute
|
119
|
+
*AssetsApi* | [**assets_id_values_attribute_id_delete**](docs/AssetsApi.md#assets_id_values_attribute_id_delete) | **DELETE** /assets/{id}/values/{attributeId} | Deletes the value for an asset attribute
|
120
|
+
*AssetsApi* | [**assets_id_values_attribute_id_get**](docs/AssetsApi.md#assets_id_values_attribute_id_get) | **GET** /assets/{id}/values/{attributeId} | Returns the value for an asset attribute
|
121
|
+
*AssetsApi* | [**assets_id_values_attribute_id_put**](docs/AssetsApi.md#assets_id_values_attribute_id_put) | **PUT** /assets/{id}/values/{attributeId} | Replaces the value for an asset attribute
|
122
|
+
*AssetsApi* | [**assets_post**](docs/AssetsApi.md#assets_post) | **POST** /assets | Creates a new asset object with autogenerated ID
|
123
|
+
*AssetsApi* | [**assets_search_post**](docs/AssetsApi.md#assets_search_post) | **POST** /assets/search | Search for / query assets
|
124
|
+
*AttributesApi* | [**attributes_id_get**](docs/AttributesApi.md#attributes_id_get) | **GET** /attributes/{id} | Returns the attribute with the specified ID
|
125
|
+
*BackgroundProcessTypesApi* | [**background_process_types_get**](docs/BackgroundProcessTypesApi.md#background_process_types_get) | **GET** /background-process-types | Returns the available background process types
|
126
|
+
*BackgroundProcessTypesApi* | [**background_process_types_type_id_processes_get**](docs/BackgroundProcessTypesApi.md#background_process_types_type_id_processes_get) | **GET** /background-process-types/{typeId}/processes | Returns background process IDs for the specified background process type
|
127
|
+
*BackgroundProcessesApi* | [**background_processes_id_attachments_attachment_id_content_get**](docs/BackgroundProcessesApi.md#background_processes_id_attachments_attachment_id_content_get) | **GET** /background-processes/{id}/attachments/{attachmentId}/content | Returns the background process attachment content
|
128
|
+
*BackgroundProcessesApi* | [**background_processes_id_attachments_attachment_id_get**](docs/BackgroundProcessesApi.md#background_processes_id_attachments_attachment_id_get) | **GET** /background-processes/{id}/attachments/{attachmentId} | Returns attachment metadata for a specific attachment
|
129
|
+
*BackgroundProcessesApi* | [**background_processes_id_attachments_get**](docs/BackgroundProcessesApi.md#background_processes_id_attachments_get) | **GET** /background-processes/{id}/attachments | Returns information about available background process attachments
|
130
|
+
*BackgroundProcessesApi* | [**background_processes_id_execution_report_get**](docs/BackgroundProcessesApi.md#background_processes_id_execution_report_get) | **GET** /background-processes/{id}/execution-report | Returns a streamed array of execution report entries (ExecutionReportEntry)
|
131
|
+
*BackgroundProcessesApi* | [**background_processes_id_get**](docs/BackgroundProcessesApi.md#background_processes_id_get) | **GET** /background-processes/{id} | Returns the background process with the specified ID
|
132
|
+
*ClassificationsApi* | [**classifications_id_approval_status_get**](docs/ClassificationsApi.md#classifications_id_approval_status_get) | **GET** /classifications/{id}/approval-status | Returns the approval status of the classification with the specified ID / key value
|
133
|
+
*ClassificationsApi* | [**classifications_id_approve_delete_post**](docs/ClassificationsApi.md#classifications_id_approve_delete_post) | **POST** /classifications/{id}/approve-delete | Approves deletes the classification with the specified ID
|
134
|
+
*ClassificationsApi* | [**classifications_id_approve_post**](docs/ClassificationsApi.md#classifications_id_approve_post) | **POST** /classifications/{id}/approve | Approves the classification with the specified ID / key value
|
135
|
+
*ClassificationsApi* | [**classifications_id_assets_get**](docs/ClassificationsApi.md#classifications_id_assets_get) | **GET** /classifications/{id}/assets | Returns a streamed array of IDs for assets linked to the classification
|
136
|
+
*ClassificationsApi* | [**classifications_id_children_get**](docs/ClassificationsApi.md#classifications_id_children_get) | **GET** /classifications/{id}/children | Returns a streamed array of IDs for classification children
|
137
|
+
*ClassificationsApi* | [**classifications_id_delete**](docs/ClassificationsApi.md#classifications_id_delete) | **DELETE** /classifications/{id} | Deletes the classification with the specified ID / key value
|
138
|
+
*ClassificationsApi* | [**classifications_id_get**](docs/ClassificationsApi.md#classifications_id_get) | **GET** /classifications/{id} | Returns the classification with the specified ID / key value
|
139
|
+
*ClassificationsApi* | [**classifications_id_incoming_references_reference_type_id_get**](docs/ClassificationsApi.md#classifications_id_incoming_references_reference_type_id_get) | **GET** /classifications/{id}/incoming-references/{referenceTypeId} | Returns stream of incoming references of the specified type
|
140
|
+
*ClassificationsApi* | [**classifications_id_patch**](docs/ClassificationsApi.md#classifications_id_patch) | **PATCH** /classifications/{id} | Partially updates a classification
|
141
|
+
*ClassificationsApi* | [**classifications_id_purge_post**](docs/ClassificationsApi.md#classifications_id_purge_post) | **POST** /classifications/{id}/purge | Purges the classification with the specified ID from recycle bin
|
142
|
+
*ClassificationsApi* | [**classifications_id_put**](docs/ClassificationsApi.md#classifications_id_put) | **PUT** /classifications/{id} | Creates or replaces classification with known ID
|
143
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_get**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_get) | **GET** /classifications/{id}/references/{referenceTypeId} | Returns reference(s) of the specified type
|
144
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_delete**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_delete) | **DELETE** /classifications/{id}/references/{referenceTypeId}/{targetId} | Deletes the reference
|
145
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_get**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_get) | **GET** /classifications/{id}/references/{referenceTypeId}/{targetId} | Returns a specific reference
|
146
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_put**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_put) | **PUT** /classifications/{id}/references/{referenceTypeId}/{targetId} | Replaces a reference
|
147
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_values_attribute_id_delete**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_values_attribute_id_delete) | **DELETE** /classifications/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Deletes the value for a reference metadata attribute
|
148
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_values_attribute_id_get**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_values_attribute_id_get) | **GET** /classifications/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Returns the value for a reference metadata attribute
|
149
|
+
*ClassificationsApi* | [**classifications_id_references_reference_type_id_target_id_values_attribute_id_put**](docs/ClassificationsApi.md#classifications_id_references_reference_type_id_target_id_values_attribute_id_put) | **PUT** /classifications/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Replaces the value for a reference metadata attribute
|
150
|
+
*ClassificationsApi* | [**classifications_id_values_attribute_id_delete**](docs/ClassificationsApi.md#classifications_id_values_attribute_id_delete) | **DELETE** /classifications/{id}/values/{attributeId} | Deletes the value for a classification attribute
|
151
|
+
*ClassificationsApi* | [**classifications_id_values_attribute_id_get**](docs/ClassificationsApi.md#classifications_id_values_attribute_id_get) | **GET** /classifications/{id}/values/{attributeId} | Returns the value for a classification attribute
|
152
|
+
*ClassificationsApi* | [**classifications_id_values_attribute_id_put**](docs/ClassificationsApi.md#classifications_id_values_attribute_id_put) | **PUT** /classifications/{id}/values/{attributeId} | Replaces the value for a classification attribute
|
153
|
+
*ClassificationsApi* | [**classifications_post**](docs/ClassificationsApi.md#classifications_post) | **POST** /classifications | Creates a new classification object with autogenerated ID
|
154
|
+
*ClassificationsApi* | [**classifications_search_post**](docs/ClassificationsApi.md#classifications_search_post) | **POST** /classifications/search | Search for / query classifications
|
155
|
+
*DataContainerTypesApi* | [**data_container_types_id_get**](docs/DataContainerTypesApi.md#data_container_types_id_get) | **GET** /data-container-types/{id} | Returns the data container type with the specified ID
|
156
|
+
*DataTypeGroupsApi* | [**data_type_groups_id_get**](docs/DataTypeGroupsApi.md#data_type_groups_id_get) | **GET** /data-type-groups/{id} | Returns the data type group with the specified ID
|
157
|
+
*EntitiesApi* | [**entities_find_similar_post**](docs/EntitiesApi.md#entities_find_similar_post) | **POST** /entities/find-similar | Performs a find similar operation for entities
|
158
|
+
*EntitiesApi* | [**entities_id_approval_status_get**](docs/EntitiesApi.md#entities_id_approval_status_get) | **GET** /entities/{id}/approval-status | Returns the approval status of the entity with the specified ID / key value
|
159
|
+
*EntitiesApi* | [**entities_id_approve_delete_post**](docs/EntitiesApi.md#entities_id_approve_delete_post) | **POST** /entities/{id}/approve-delete | Approve deletes the entity with the specified ID
|
160
|
+
*EntitiesApi* | [**entities_id_approve_post**](docs/EntitiesApi.md#entities_id_approve_post) | **POST** /entities/{id}/approve | Approves the entity with the specified ID / key value
|
161
|
+
*EntitiesApi* | [**entities_id_children_get**](docs/EntitiesApi.md#entities_id_children_get) | **GET** /entities/{id}/children | Returns a streamed array of IDs for entity children
|
162
|
+
*EntitiesApi* | [**entities_id_data_containers_data_container_type_id_get**](docs/EntitiesApi.md#entities_id_data_containers_data_container_type_id_get) | **GET** /entities/{id}/data-containers/{dataContainerTypeId} | Returns data container(s) of the specified type
|
163
|
+
*EntitiesApi* | [**entities_id_delete**](docs/EntitiesApi.md#entities_id_delete) | **DELETE** /entities/{id} | Deletes the entity with the specified ID
|
164
|
+
*EntitiesApi* | [**entities_id_get**](docs/EntitiesApi.md#entities_id_get) | **GET** /entities/{id} | Returns the entity with the specified ID / key value
|
165
|
+
*EntitiesApi* | [**entities_id_incoming_references_reference_type_id_get**](docs/EntitiesApi.md#entities_id_incoming_references_reference_type_id_get) | **GET** /entities/{id}/incoming-references/{referenceTypeId} | Returns stream of incoming references of the specified type
|
166
|
+
*EntitiesApi* | [**entities_id_patch**](docs/EntitiesApi.md#entities_id_patch) | **PATCH** /entities/{id} | Partially updates an entity
|
167
|
+
*EntitiesApi* | [**entities_id_purge_post**](docs/EntitiesApi.md#entities_id_purge_post) | **POST** /entities/{id}/purge | Purges the entity with the specified ID from recycle bin
|
168
|
+
*EntitiesApi* | [**entities_id_put**](docs/EntitiesApi.md#entities_id_put) | **PUT** /entities/{id} | Creates or replaces entity with known ID
|
169
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_get**](docs/EntitiesApi.md#entities_id_references_reference_type_id_get) | **GET** /entities/{id}/references/{referenceTypeId} | Returns reference(s) of the specified type
|
170
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_delete**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_delete) | **DELETE** /entities/{id}/references/{referenceTypeId}/{targetId} | Deletes the reference
|
171
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_get**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_get) | **GET** /entities/{id}/references/{referenceTypeId}/{targetId} | Returns a specific reference
|
172
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_put**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_put) | **PUT** /entities/{id}/references/{referenceTypeId}/{targetId} | Replaces a reference
|
173
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_values_attribute_id_delete**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_values_attribute_id_delete) | **DELETE** /entities/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Deletes the value for a reference metadata attribute
|
174
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_values_attribute_id_get**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_values_attribute_id_get) | **GET** /entities/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Returns the value for a reference metadata attribute
|
175
|
+
*EntitiesApi* | [**entities_id_references_reference_type_id_target_id_values_attribute_id_put**](docs/EntitiesApi.md#entities_id_references_reference_type_id_target_id_values_attribute_id_put) | **PUT** /entities/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Replaces the value for a reference metadata attribute
|
176
|
+
*EntitiesApi* | [**entities_id_values_attribute_id_delete**](docs/EntitiesApi.md#entities_id_values_attribute_id_delete) | **DELETE** /entities/{id}/values/{attributeId} | Deletes the value for an entity attribute
|
177
|
+
*EntitiesApi* | [**entities_id_values_attribute_id_get**](docs/EntitiesApi.md#entities_id_values_attribute_id_get) | **GET** /entities/{id}/values/{attributeId} | Returns the value for an entity attribute
|
178
|
+
*EntitiesApi* | [**entities_id_values_attribute_id_put**](docs/EntitiesApi.md#entities_id_values_attribute_id_put) | **PUT** /entities/{id}/values/{attributeId} | Replaces the value for an entity attribute
|
179
|
+
*EntitiesApi* | [**entities_match_and_merge_post**](docs/EntitiesApi.md#entities_match_and_merge_post) | **POST** /entities/match-and-merge | Performs a Match An Merge operation
|
180
|
+
*EntitiesApi* | [**entities_post**](docs/EntitiesApi.md#entities_post) | **POST** /entities | Creates a new entity object with autogenerated ID
|
181
|
+
*EntitiesApi* | [**entities_search_post**](docs/EntitiesApi.md#entities_search_post) | **POST** /entities/search | Search for / query entities
|
182
|
+
*EventProcessorsApi* | [**event_processors_get**](docs/EventProcessorsApi.md#event_processors_get) | **GET** /event-processors | Returns basic event processor representations
|
183
|
+
*EventProcessorsApi* | [**event_processors_id_disable_post**](docs/EventProcessorsApi.md#event_processors_id_disable_post) | **POST** /event-processors/{id}/disable | Disables the specified event processor
|
184
|
+
*EventProcessorsApi* | [**event_processors_id_enable_post**](docs/EventProcessorsApi.md#event_processors_id_enable_post) | **POST** /event-processors/{id}/enable | Enables the specified event processor
|
185
|
+
*EventProcessorsApi* | [**event_processors_id_execution_report_get**](docs/EventProcessorsApi.md#event_processors_id_execution_report_get) | **GET** /event-processors/{id}/execution-report | Returns the execution report for the specified event processor
|
186
|
+
*EventProcessorsApi* | [**event_processors_id_invoke_post**](docs/EventProcessorsApi.md#event_processors_id_invoke_post) | **POST** /event-processors/{id}/invoke | Invokes the specified event processor
|
187
|
+
*EventProcessorsApi* | [**event_processors_id_queue_disable_post**](docs/EventProcessorsApi.md#event_processors_id_queue_disable_post) | **POST** /event-processors/{id}/queue/disable | Disables the event queue associated with the event processor
|
188
|
+
*EventProcessorsApi* | [**event_processors_id_queue_enable_post**](docs/EventProcessorsApi.md#event_processors_id_queue_enable_post) | **POST** /event-processors/{id}/queue/enable | Enables the event queue associated with the event processor
|
189
|
+
*EventProcessorsApi* | [**event_processors_id_queue_number_of_unread_events_get**](docs/EventProcessorsApi.md#event_processors_id_queue_number_of_unread_events_get) | **GET** /event-processors/{id}/queue/number-of-unread-events | Returns the number of unread events for the associated event queue
|
190
|
+
*EventProcessorsApi* | [**event_processors_id_queue_status_get**](docs/EventProcessorsApi.md#event_processors_id_queue_status_get) | **GET** /event-processors/{id}/queue/status | Returns the status of the event queue associated with the event processor
|
191
|
+
*EventProcessorsApi* | [**event_processors_id_statistics_get**](docs/EventProcessorsApi.md#event_processors_id_statistics_get) | **GET** /event-processors/{id}/statistics | Returns statistics for the specified event processor
|
192
|
+
*EventProcessorsApi* | [**event_processors_id_status_get**](docs/EventProcessorsApi.md#event_processors_id_status_get) | **GET** /event-processors/{id}/status | Returns the status of the specified event processor
|
193
|
+
*ExportApi* | [**export_export_configuration_id_post**](docs/ExportApi.md#export_export_configuration_id_post) | **POST** /export/{exportConfigurationId} | Starts an export background process
|
194
|
+
*GatewayIntegrationEndpointsApi* | [**gateway_integration_endpoints_get**](docs/GatewayIntegrationEndpointsApi.md#gateway_integration_endpoints_get) | **GET** /gateway-integration-endpoints | Returns basic gateway integration endpoint representations
|
195
|
+
*GatewayIntegrationEndpointsApi* | [**gateway_integration_endpoints_id_disable_post**](docs/GatewayIntegrationEndpointsApi.md#gateway_integration_endpoints_id_disable_post) | **POST** /gateway-integration-endpoints/{id}/disable | Disables the gateway integration endpoint
|
196
|
+
*GatewayIntegrationEndpointsApi* | [**gateway_integration_endpoints_id_enable_post**](docs/GatewayIntegrationEndpointsApi.md#gateway_integration_endpoints_id_enable_post) | **POST** /gateway-integration-endpoints/{id}/enable | Enables the gateway integration endpoint
|
197
|
+
*GatewayIntegrationEndpointsApi* | [**gateway_integration_endpoints_id_status_get**](docs/GatewayIntegrationEndpointsApi.md#gateway_integration_endpoints_id_status_get) | **GET** /gateway-integration-endpoints/{id}/status | Returns the status of the specified gateway integration endpoint
|
198
|
+
*ImportApi* | [**import_import_configuration_id_post**](docs/ImportApi.md#import_import_configuration_id_post) | **POST** /import/{importConfigurationId} | Starts an import background process
|
199
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_get**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_get) | **GET** /inbound-integration-endpoints | Returns basic inbound integration endpoint representations
|
200
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_disable_post**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_disable_post) | **POST** /inbound-integration-endpoints/{id}/disable | Disables the specified inbound integration endpoint
|
201
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_enable_post**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_enable_post) | **POST** /inbound-integration-endpoints/{id}/enable | Enables the specified inbound integration endpoint
|
202
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_execution_report_get**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_execution_report_get) | **GET** /inbound-integration-endpoints/{id}/execution-report | Returns the execution report for the specified inbound integration endpoint
|
203
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_invoke_post**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_invoke_post) | **POST** /inbound-integration-endpoints/{id}/invoke | Invokes the specified inbound integration endpoint
|
204
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_statistics_get**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_statistics_get) | **GET** /inbound-integration-endpoints/{id}/statistics | Returns statistics for the specified inbound integration endpoint
|
205
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_status_get**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_status_get) | **GET** /inbound-integration-endpoints/{id}/status | Returns the status of the specified inbound integration endpoint
|
206
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_upload_and_invoke_post**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_upload_and_invoke_post) | **POST** /inbound-integration-endpoints/{id}/upload-and-invoke | Posts message/file to endpoint with REST receiver
|
207
|
+
*InboundIntegrationEndpointsApi* | [**inbound_integration_endpoints_id_worker_processes_get**](docs/InboundIntegrationEndpointsApi.md#inbound_integration_endpoints_id_worker_processes_get) | **GET** /inbound-integration-endpoints/{id}/worker-processes | Returns background process IDs for processes started by the endpoint
|
208
|
+
*ListsOfValuesApi* | [**list_of_values_id_get**](docs/ListsOfValuesApi.md#list_of_values_id_get) | **GET** /list-of-values/{id} | Returns the list of values with the specified ID
|
209
|
+
*ListsOfValuesApi* | [**list_of_values_id_value_entries_get**](docs/ListsOfValuesApi.md#list_of_values_id_value_entries_get) | **GET** /list-of-values/{id}/value-entries | Returns a streamed array of value entries (ListOfValuesEntry)
|
210
|
+
*ObjectTypesApi* | [**object_types_id_get**](docs/ObjectTypesApi.md#object_types_id_get) | **GET** /object-types/{id} | Returns the object type with the specified ID
|
211
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_get) | **GET** /outbound-integration-endpoints | Returns basic outbound integration endpoint representations
|
212
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_disable_post**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_disable_post) | **POST** /outbound-integration-endpoints/{id}/disable | Disables the specified outbound integration endpoint
|
213
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_enable_post**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_enable_post) | **POST** /outbound-integration-endpoints/{id}/enable | Enables the specified outbound integration endpoint
|
214
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_execution_report_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_execution_report_get) | **GET** /outbound-integration-endpoints/{id}/execution-report | Returns the execution report for the specified outbound integration endpoint
|
215
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_invoke_post**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_invoke_post) | **POST** /outbound-integration-endpoints/{id}/invoke | Invokes the specified outbound integration endpoint
|
216
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_queue_disable_post**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_queue_disable_post) | **POST** /outbound-integration-endpoints/{id}/queue/disable | Disables the event queue associated with the outbound integration endpoint
|
217
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_queue_enable_post**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_queue_enable_post) | **POST** /outbound-integration-endpoints/{id}/queue/enable | Enables the event queue associated with the outbound integration endpoint
|
218
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_queue_number_of_unread_events_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_queue_number_of_unread_events_get) | **GET** /outbound-integration-endpoints/{id}/queue/number-of-unread-events | Returns the number of unread events for the associated event queue
|
219
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_queue_status_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_queue_status_get) | **GET** /outbound-integration-endpoints/{id}/queue/status | Returns the status of the event queue associated with the outbound integration endpoint
|
220
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_statistics_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_statistics_get) | **GET** /outbound-integration-endpoints/{id}/statistics | Returns statistics for the specified outbound integration endpoint
|
221
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_status_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_status_get) | **GET** /outbound-integration-endpoints/{id}/status | Returns the status of the specified outbound integration endpoint
|
222
|
+
*OutboundIntegrationEndpointsApi* | [**outbound_integration_endpoints_id_worker_processes_get**](docs/OutboundIntegrationEndpointsApi.md#outbound_integration_endpoints_id_worker_processes_get) | **GET** /outbound-integration-endpoints/{id}/worker-processes | Returns background process IDs for processes started by the endpoint
|
223
|
+
*ProductsApi* | [**products_id_approval_status_get**](docs/ProductsApi.md#products_id_approval_status_get) | **GET** /products/{id}/approval-status | Returns the approval status of the product with the specified ID / key value
|
224
|
+
*ProductsApi* | [**products_id_approve_delete_post**](docs/ProductsApi.md#products_id_approve_delete_post) | **POST** /products/{id}/approve-delete | Approve deletes the product with the specified ID
|
225
|
+
*ProductsApi* | [**products_id_approve_post**](docs/ProductsApi.md#products_id_approve_post) | **POST** /products/{id}/approve | Approves the product with the specified ID / key value
|
226
|
+
*ProductsApi* | [**products_id_children_get**](docs/ProductsApi.md#products_id_children_get) | **GET** /products/{id}/children | Returns a streamed array of IDs for product children
|
227
|
+
*ProductsApi* | [**products_id_data_containers_data_container_type_id_get**](docs/ProductsApi.md#products_id_data_containers_data_container_type_id_get) | **GET** /products/{id}/data-containers/{dataContainerTypeId} | Returns data container(s) of the specified type
|
228
|
+
*ProductsApi* | [**products_id_delete**](docs/ProductsApi.md#products_id_delete) | **DELETE** /products/{id} | Deletes the product with the specified ID / key value
|
229
|
+
*ProductsApi* | [**products_id_get**](docs/ProductsApi.md#products_id_get) | **GET** /products/{id} | Returns the product with the specified ID / key value
|
230
|
+
*ProductsApi* | [**products_id_incoming_references_reference_type_id_get**](docs/ProductsApi.md#products_id_incoming_references_reference_type_id_get) | **GET** /products/{id}/incoming-references/{referenceTypeId} | Returns stream of incoming references of the specified type
|
231
|
+
*ProductsApi* | [**products_id_patch**](docs/ProductsApi.md#products_id_patch) | **PATCH** /products/{id} | Partially updates a product
|
232
|
+
*ProductsApi* | [**products_id_purge_post**](docs/ProductsApi.md#products_id_purge_post) | **POST** /products/{id}/purge | Purges the product with the specified ID from recycle bin
|
233
|
+
*ProductsApi* | [**products_id_put**](docs/ProductsApi.md#products_id_put) | **PUT** /products/{id} | Creates or replaces product with known ID
|
234
|
+
*ProductsApi* | [**products_id_references_reference_type_id_get**](docs/ProductsApi.md#products_id_references_reference_type_id_get) | **GET** /products/{id}/references/{referenceTypeId} | Returns reference(s) of the specified type
|
235
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_delete**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_delete) | **DELETE** /products/{id}/references/{referenceTypeId}/{targetId} | Deletes the reference
|
236
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_get**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_get) | **GET** /products/{id}/references/{referenceTypeId}/{targetId} | Returns a specific reference
|
237
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_put**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_put) | **PUT** /products/{id}/references/{referenceTypeId}/{targetId} | Replaces a reference
|
238
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_values_attribute_id_delete**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_values_attribute_id_delete) | **DELETE** /products/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Deletes the value for a reference metadata attribute
|
239
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_values_attribute_id_get**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_values_attribute_id_get) | **GET** /products/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Returns the value for a reference metadata attribute
|
240
|
+
*ProductsApi* | [**products_id_references_reference_type_id_target_id_values_attribute_id_put**](docs/ProductsApi.md#products_id_references_reference_type_id_target_id_values_attribute_id_put) | **PUT** /products/{id}/references/{referenceTypeId}/{targetId}/values/{attributeId} | Replaces the value for a reference metadata attribute
|
241
|
+
*ProductsApi* | [**products_id_values_attribute_id_delete**](docs/ProductsApi.md#products_id_values_attribute_id_delete) | **DELETE** /products/{id}/values/{attributeId} | Deletes the value for a product attribute
|
242
|
+
*ProductsApi* | [**products_id_values_attribute_id_get**](docs/ProductsApi.md#products_id_values_attribute_id_get) | **GET** /products/{id}/values/{attributeId} | Returns the value for a product attribute
|
243
|
+
*ProductsApi* | [**products_id_values_attribute_id_put**](docs/ProductsApi.md#products_id_values_attribute_id_put) | **PUT** /products/{id}/values/{attributeId} | Replaces the value for a product attribute
|
244
|
+
*ProductsApi* | [**products_post**](docs/ProductsApi.md#products_post) | **POST** /products | Creates a new product object with autogenerated ID
|
245
|
+
*ProductsApi* | [**products_search_post**](docs/ProductsApi.md#products_search_post) | **POST** /products/search | Search for / query products
|
246
|
+
*ReferenceTypesApi* | [**reference_types_id_get**](docs/ReferenceTypesApi.md#reference_types_id_get) | **GET** /reference-types/{id} | Returns the reference type with the specified ID
|
247
|
+
*ReportingApi* | [**reports_historic_changes_report_id_clean_up_post**](docs/ReportingApi.md#reports_historic_changes_report_id_clean_up_post) | **POST** /reports/historic-changes/{reportID}/clean-up | Deletes configuration objects specific to a report.
|
248
|
+
*ReportingApi* | [**reports_historic_changes_report_id_post**](docs/ReportingApi.md#reports_historic_changes_report_id_post) | **POST** /reports/historic-changes/{reportID} | Starts historic changes report generation
|
249
|
+
*UnitsApi* | [**units_id_get**](docs/UnitsApi.md#units_id_get) | **GET** /units/{id} | Returns the unit with the specified ID
|
250
|
+
*WorkflowTasksApi* | [**workflow_tasks_id_claim_post**](docs/WorkflowTasksApi.md#workflow_tasks_id_claim_post) | **POST** /workflow-tasks/{id}/claim | Claims a specific workflow tasks
|
251
|
+
*WorkflowTasksApi* | [**workflow_tasks_id_events_get**](docs/WorkflowTasksApi.md#workflow_tasks_id_events_get) | **GET** /workflow-tasks/{id}/events | Returns the available events for a task
|
252
|
+
*WorkflowTasksApi* | [**workflow_tasks_id_get**](docs/WorkflowTasksApi.md#workflow_tasks_id_get) | **GET** /workflow-tasks/{id} | Returns the workflow task with the specified ID
|
253
|
+
*WorkflowTasksApi* | [**workflow_tasks_id_release_post**](docs/WorkflowTasksApi.md#workflow_tasks_id_release_post) | **POST** /workflow-tasks/{id}/release | Releases a task
|
254
|
+
*WorkflowTasksApi* | [**workflow_tasks_id_trigger_event_post**](docs/WorkflowTasksApi.md#workflow_tasks_id_trigger_event_post) | **POST** /workflow-tasks/{id}/trigger-event | Triggers an event for a task
|
255
|
+
*WorkflowTasksApi* | [**workflow_tasks_search_post**](docs/WorkflowTasksApi.md#workflow_tasks_search_post) | **POST** /workflow-tasks/search | Search for / query workflow tasks
|
256
|
+
*WorkflowsApi* | [**workflows_get**](docs/WorkflowsApi.md#workflows_get) | **GET** /workflows | Returns IDs of available workflows
|
257
|
+
*WorkflowsApi* | [**workflows_id_get**](docs/WorkflowsApi.md#workflows_id_get) | **GET** /workflows/{id} | Returns the workflow with the specified ID
|
258
|
+
*WorkflowsApi* | [**workflows_id_instances_instance_id_delete**](docs/WorkflowsApi.md#workflows_id_instances_instance_id_delete) | **DELETE** /workflows/{id}/instances/{instanceId} | Deletes the workflow instance with the specified ID
|
259
|
+
*WorkflowsApi* | [**workflows_id_instances_post**](docs/WorkflowsApi.md#workflows_id_instances_post) | **POST** /workflows/{id}/instances | Starts a workflow
|
260
|
+
|
261
|
+
|
262
|
+
## Documentation For Models
|
263
|
+
|
264
|
+
- [Amount](docs/Amount.md)
|
265
|
+
- [AndCondition](docs/AndCondition.md)
|
266
|
+
- [ApprovalResponse](docs/ApprovalResponse.md)
|
267
|
+
- [ApprovalStatus](docs/ApprovalStatus.md)
|
268
|
+
- [Asset](docs/Asset.md)
|
269
|
+
- [Attribute](docs/Attribute.md)
|
270
|
+
- [AttributeLink](docs/AttributeLink.md)
|
271
|
+
- [BackgroundProcess](docs/BackgroundProcess.md)
|
272
|
+
- [BackgroundProcessAttachmentMetadata](docs/BackgroundProcessAttachmentMetadata.md)
|
273
|
+
- [BackgroundProcessIdentification](docs/BackgroundProcessIdentification.md)
|
274
|
+
- [BackgroundProcessType](docs/BackgroundProcessType.md)
|
275
|
+
- [Classification](docs/Classification.md)
|
276
|
+
- [Condition](docs/Condition.md)
|
277
|
+
- [DataContainer](docs/DataContainer.md)
|
278
|
+
- [DataContainerEntry](docs/DataContainerEntry.md)
|
279
|
+
- [DataContainerObjectCondition](docs/DataContainerObjectCondition.md)
|
280
|
+
- [DataContainerType](docs/DataContainerType.md)
|
281
|
+
- [DataTypeGroup](docs/DataTypeGroup.md)
|
282
|
+
- [EndpointStatistics](docs/EndpointStatistics.md)
|
283
|
+
- [EndpointStatus](docs/EndpointStatus.md)
|
284
|
+
- [Entity](docs/Entity.md)
|
285
|
+
- [Error](docs/Error.md)
|
286
|
+
- [EventProcessor](docs/EventProcessor.md)
|
287
|
+
- [EventProcessorStatistics](docs/EventProcessorStatistics.md)
|
288
|
+
- [EventProcessorStatus](docs/EventProcessorStatus.md)
|
289
|
+
- [EventQueueStatus](docs/EventQueueStatus.md)
|
290
|
+
- [ExecutionReportEntry](docs/ExecutionReportEntry.md)
|
291
|
+
- [ExportSpecification](docs/ExportSpecification.md)
|
292
|
+
- [FindSimilarBusinessRuleResult](docs/FindSimilarBusinessRuleResult.md)
|
293
|
+
- [FindSimilarEntitiesRequest](docs/FindSimilarEntitiesRequest.md)
|
294
|
+
- [FindSimilarEntitiesResponse](docs/FindSimilarEntitiesResponse.md)
|
295
|
+
- [FindSimilarEntitiesResponseRecord](docs/FindSimilarEntitiesResponseRecord.md)
|
296
|
+
- [FindSimilarExecutionReport](docs/FindSimilarExecutionReport.md)
|
297
|
+
- [GatewayIntegrationEndpoint](docs/GatewayIntegrationEndpoint.md)
|
298
|
+
- [HasDataContainerObjectCondition](docs/HasDataContainerObjectCondition.md)
|
299
|
+
- [HasReferenceToCondition](docs/HasReferenceToCondition.md)
|
300
|
+
- [IdCondition](docs/IdCondition.md)
|
301
|
+
- [InboundIntegrationEndpoint](docs/InboundIntegrationEndpoint.md)
|
302
|
+
- [IncomingReferenceEntry](docs/IncomingReferenceEntry.md)
|
303
|
+
- [ListOfValues](docs/ListOfValues.md)
|
304
|
+
- [ListOfValuesEntry](docs/ListOfValuesEntry.md)
|
305
|
+
- [LovValueCondition](docs/LovValueCondition.md)
|
306
|
+
- [MatchAndMergeExecutionReport](docs/MatchAndMergeExecutionReport.md)
|
307
|
+
- [MatchAndMergeGeneralExecutionReport](docs/MatchAndMergeGeneralExecutionReport.md)
|
308
|
+
- [MatchAndMergePotentialDuplicate](docs/MatchAndMergePotentialDuplicate.md)
|
309
|
+
- [MatchAndMergeRecordIn](docs/MatchAndMergeRecordIn.md)
|
310
|
+
- [MatchAndMergeRecordOut](docs/MatchAndMergeRecordOut.md)
|
311
|
+
- [MatchAndMergeResponse](docs/MatchAndMergeResponse.md)
|
312
|
+
- [MultiDataContainer](docs/MultiDataContainer.md)
|
313
|
+
- [MultiReference](docs/MultiReference.md)
|
314
|
+
- [MultiValue](docs/MultiValue.md)
|
315
|
+
- [NameCondition](docs/NameCondition.md)
|
316
|
+
- [NumericValueCondition](docs/NumericValueCondition.md)
|
317
|
+
- [ObjectType](docs/ObjectType.md)
|
318
|
+
- [ObjectTypeCondition](docs/ObjectTypeCondition.md)
|
319
|
+
- [OrCondition](docs/OrCondition.md)
|
320
|
+
- [OutboundIntegrationEndpoint](docs/OutboundIntegrationEndpoint.md)
|
321
|
+
- [Product](docs/Product.md)
|
322
|
+
- [Query](docs/Query.md)
|
323
|
+
- [QueryResult](docs/QueryResult.md)
|
324
|
+
- [Reference](docs/Reference.md)
|
325
|
+
- [ReferenceEntry](docs/ReferenceEntry.md)
|
326
|
+
- [ReferenceMetadataCondition](docs/ReferenceMetadataCondition.md)
|
327
|
+
- [ReferenceType](docs/ReferenceType.md)
|
328
|
+
- [RejectedByBusinessCondition](docs/RejectedByBusinessCondition.md)
|
329
|
+
- [SimpleBelowCondition](docs/SimpleBelowCondition.md)
|
330
|
+
- [SingleDataContainer](docs/SingleDataContainer.md)
|
331
|
+
- [SingleReference](docs/SingleReference.md)
|
332
|
+
- [SingleValue](docs/SingleValue.md)
|
333
|
+
- [StatusFlag](docs/StatusFlag.md)
|
334
|
+
- [TextValueCondition](docs/TextValueCondition.md)
|
335
|
+
- [TriggerWorkflowEvent](docs/TriggerWorkflowEvent.md)
|
336
|
+
- [Unit](docs/Unit.md)
|
337
|
+
- [Value](docs/Value.md)
|
338
|
+
- [ValueEntry](docs/ValueEntry.md)
|
339
|
+
- [Workflow](docs/Workflow.md)
|
340
|
+
- [WorkflowEvent](docs/WorkflowEvent.md)
|
341
|
+
- [WorkflowInstance](docs/WorkflowInstance.md)
|
342
|
+
- [WorkflowInstanceCreation](docs/WorkflowInstanceCreation.md)
|
343
|
+
- [WorkflowNode](docs/WorkflowNode.md)
|
344
|
+
- [WorkflowTask](docs/WorkflowTask.md)
|
345
|
+
- [WorkflowTaskQuery](docs/WorkflowTaskQuery.md)
|
346
|
+
|
347
|
+
|
348
|
+
<a id="documentation-for-authorization"></a>
|
349
|
+
## Documentation For Authorization
|
350
|
+
|
351
|
+
|
352
|
+
Authentication schemes defined for the API:
|
353
|
+
<a id="basicAuth"></a>
|
354
|
+
### basicAuth
|
355
|
+
|
356
|
+
- **Type**: HTTP basic authentication
|
357
|
+
|
358
|
+
|
359
|
+
## Author
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
|
@@ -0,0 +1,89 @@
|
|
1
|
+
[tool.poetry]
|
2
|
+
name = "step_rest_client"
|
3
|
+
version = "1.0.0"
|
4
|
+
description = "STEP REST API V2"
|
5
|
+
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
|
6
|
+
license = "NoLicense"
|
7
|
+
readme = "README.md"
|
8
|
+
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
|
9
|
+
keywords = ["OpenAPI", "OpenAPI-Generator", "STEP REST API V2"]
|
10
|
+
include = ["step_rest_client/py.typed"]
|
11
|
+
|
12
|
+
[tool.poetry.dependencies]
|
13
|
+
python = "^3.8"
|
14
|
+
|
15
|
+
urllib3 = ">= 1.25.3, < 3.0.0"
|
16
|
+
python-dateutil = ">= 2.8.2"
|
17
|
+
pydantic = ">= 2"
|
18
|
+
typing-extensions = ">= 4.7.1"
|
19
|
+
|
20
|
+
[tool.poetry.group.dev.dependencies]
|
21
|
+
pytest = ">= 7.2.1"
|
22
|
+
pytest-cov = ">= 2.8.1"
|
23
|
+
tox = ">= 3.9.0"
|
24
|
+
flake8 = ">= 4.0.0"
|
25
|
+
types-python-dateutil = ">= 2.8.19.14"
|
26
|
+
mypy = ">= 1.5"
|
27
|
+
|
28
|
+
|
29
|
+
[build-system]
|
30
|
+
requires = ["setuptools"]
|
31
|
+
build-backend = "setuptools.build_meta"
|
32
|
+
|
33
|
+
[tool.pylint.'MESSAGES CONTROL']
|
34
|
+
extension-pkg-whitelist = "pydantic"
|
35
|
+
|
36
|
+
[tool.mypy]
|
37
|
+
files = [
|
38
|
+
"step_rest_client",
|
39
|
+
#"test", # auto-generated tests
|
40
|
+
"tests", # hand-written tests
|
41
|
+
]
|
42
|
+
# TODO: enable "strict" once all these individual checks are passing
|
43
|
+
# strict = true
|
44
|
+
|
45
|
+
# List from: https://mypy.readthedocs.io/en/stable/existing_code.html#introduce-stricter-options
|
46
|
+
warn_unused_configs = true
|
47
|
+
warn_redundant_casts = true
|
48
|
+
warn_unused_ignores = true
|
49
|
+
|
50
|
+
## Getting these passing should be easy
|
51
|
+
strict_equality = true
|
52
|
+
extra_checks = true
|
53
|
+
|
54
|
+
## Strongly recommend enabling this one as soon as you can
|
55
|
+
check_untyped_defs = true
|
56
|
+
|
57
|
+
## These shouldn't be too much additional work, but may be tricky to
|
58
|
+
## get passing if you use a lot of untyped libraries
|
59
|
+
disallow_subclassing_any = true
|
60
|
+
disallow_untyped_decorators = true
|
61
|
+
disallow_any_generics = true
|
62
|
+
|
63
|
+
### These next few are various gradations of forcing use of type annotations
|
64
|
+
#disallow_untyped_calls = true
|
65
|
+
#disallow_incomplete_defs = true
|
66
|
+
#disallow_untyped_defs = true
|
67
|
+
#
|
68
|
+
### This one isn't too hard to get passing, but return on investment is lower
|
69
|
+
#no_implicit_reexport = true
|
70
|
+
#
|
71
|
+
### This one can be tricky to get passing if you use a lot of untyped libraries
|
72
|
+
#warn_return_any = true
|
73
|
+
|
74
|
+
[[tool.mypy.overrides]]
|
75
|
+
module = [
|
76
|
+
"step_rest_client.configuration",
|
77
|
+
]
|
78
|
+
warn_unused_ignores = true
|
79
|
+
strict_equality = true
|
80
|
+
extra_checks = true
|
81
|
+
check_untyped_defs = true
|
82
|
+
disallow_subclassing_any = true
|
83
|
+
disallow_untyped_decorators = true
|
84
|
+
disallow_any_generics = true
|
85
|
+
disallow_untyped_calls = true
|
86
|
+
disallow_incomplete_defs = true
|
87
|
+
disallow_untyped_defs = true
|
88
|
+
no_implicit_reexport = true
|
89
|
+
warn_return_any = true
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
STEP REST API V2
|
5
|
+
|
6
|
+
<h1>About</h1><p>The STEP REST API V2 provides read and write access to a set of core STEP objects using the HTTP operations GET, PUT, POST, PATCH and DELETE.</p><h1>Resource Representation</h1><p>With the exception of a few resource operations for retrieving and uploading binary data, all request and response bodies are JSON, compliant with the schema documented here.</p><h1>Context and Workspace</h1><p>All requests are handled in a specific STEP context and workspace and both can be specified via query parameters available for all resource operations. A context must always be specified while requests per default will be handled in the "Main" workspace.</p><h1>Polymorphism</h1><p>In STEP, attributes, reference types and data container types can all be either single- or multivalued. The STEP REST API V2 uses polymorphism to address this complexity with resources that include values, references and data containers specified to produce and consume a common "abstract" supertype that always will be one of either the single- or multivalued subtype.<br/>As an example, the GET /entities/{id}/values/{attributeId} resource operation is specified to return a "Value" but as evident from the model, the "Value" will always be "oneOf" either "SingleValue", that has a "value" property for which the value is an object, or "MultiValue", that has a "values" property for which the value is an array.<br/>Clients are advised to use the presence or absence of the plural array property ("values", "references" and "dataContainers") to determine the concrete type.</p><h1>Authentication</h1><p>The REST API is protected by HTTP Basic Authentication or if OAuth2-based authentication is enabled (SaaS customers only), by Bearer Authentication. With Basic Authentication, user name and password are supplied with each request and it is therefore highly recommended to only use the API in conjunction with HTTPS. For more information about OAuth2-based authentication for SaaS customers, please see the STEP Authentication Guide.</p><h1>Versioning</h1><p>The STEP REST API V2 is versioned using semantic versioning. Stibo Systems reserve the right to make non-breaking, minor / patch changes in any release without warning and clients must be coded / configured to be 'tolerant' and capable of handling such changes.</p><p>Examples of breaking, major changes:</p><ul><li>Renaming of a property</li><li>Removal of a property</li><li>Property type change</li><li>Addition of new property required for write operations</li><li>Marking existing property as required for write operations</li><li>Removal of resource or resource operation</li><li>Materially different behavior for existing resource operation</li></ul><p>Examples of non-breaking, minor / patch changes:</p><ul><li>Addition of new properties in request responses</li><li>Addition of new query parameter not required for write operations</li><li>Addition of new resource or resource operation</li><li>Bug fixes that do not change the schema or resource operations as described here</li><li>Inclusion of a response body for resource operations specified to return a 200 response with no body</li><li>Change of response "Model" / "schema" to type extending the previously specified type</li><li>Renaming a "Model" / "schema" type</li></ul><p>In addition, error message texts may change without warning within the same version. Client program logic should not depend upon the message content.</p><h1>Error Handling</h1><p>The STEP REST API V2 responds with standard HTTP status codes, with 2** responses indicating a success, 4** responses indicating a client error and 5** indicating a server error. Notice that this specification does not specify common error responses like 500 (internal server error) or 401 (unauthorized) for the individual resource operations. Clients should however be capable of handling such responses.</p><p>Error responses have a JSON response body (see Error schema below) containing HTTP status code information in addition to a message providing details about the error. As mentioned above, client program logic should not depend upon the message content.</p><p>The specific status codes used in the API are:</p><ul><li>200 (OK): Success, response may or may not have a body</li><li>201 (Created): Entity successfully created, response may or may not have a body</li><li>400 (Bad request): The server cannot or will not process the request due to an apparent client error</li><li>401 (Unauthorized): Returned only in relation to failed authentication</li><li>404 (Not Found): Returned only in relation to objects specified via path parameters (variable parts of the URL). If STEP objects referenced in request bodies or via query parameters cannot be found, the response will be 400.</li><li>429 (Too Many Requests): Clients are per default limited to 100 requests per second. Returned if the rate limit is exceeded.</li><li>500 (Internal Server Error): Unexpected error (could potentially cover an issue that rightfully should be a 400)</li></ul>
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.3.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
|
15
|
+
from setuptools import setup, find_packages # noqa: H301
|
16
|
+
|
17
|
+
# To install the library, run the following
|
18
|
+
#
|
19
|
+
# python setup.py install
|
20
|
+
#
|
21
|
+
# prerequisite: setuptools
|
22
|
+
# http://pypi.python.org/pypi/setuptools
|
23
|
+
NAME = "step-rest-client"
|
24
|
+
VERSION = "1.0.0"
|
25
|
+
PYTHON_REQUIRES = ">= 3.8"
|
26
|
+
REQUIRES = [
|
27
|
+
"urllib3 >= 1.25.3, < 3.0.0",
|
28
|
+
"python-dateutil >= 2.8.2",
|
29
|
+
"pydantic >= 2",
|
30
|
+
"typing-extensions >= 4.7.1",
|
31
|
+
]
|
32
|
+
|
33
|
+
setup(
|
34
|
+
name=NAME,
|
35
|
+
version=VERSION,
|
36
|
+
description="STEP REST API V2",
|
37
|
+
author="OpenAPI Generator community",
|
38
|
+
author_email="team@openapitools.org",
|
39
|
+
url="",
|
40
|
+
keywords=["OpenAPI", "OpenAPI-Generator", "STEP REST API V2"],
|
41
|
+
install_requires=REQUIRES,
|
42
|
+
packages=find_packages(exclude=["test", "tests"]),
|
43
|
+
include_package_data=True,
|
44
|
+
long_description_content_type='text/markdown',
|
45
|
+
long_description="""\
|
46
|
+
<h1>About</h1><p>The STEP REST API V2 provides read and write access to a set of core STEP objects using the HTTP operations GET, PUT, POST, PATCH and DELETE.</p><h1>Resource Representation</h1><p>With the exception of a few resource operations for retrieving and uploading binary data, all request and response bodies are JSON, compliant with the schema documented here.</p><h1>Context and Workspace</h1><p>All requests are handled in a specific STEP context and workspace and both can be specified via query parameters available for all resource operations. A context must always be specified while requests per default will be handled in the &quot;Main&quot; workspace.</p><h1>Polymorphism</h1><p>In STEP, attributes, reference types and data container types can all be either single- or multivalued. The STEP REST API V2 uses polymorphism to address this complexity with resources that include values, references and data containers specified to produce and consume a common &quot;abstract&quot; supertype that always will be one of either the single- or multivalued subtype.<br/>As an example, the GET /entities/{id}/values/{attributeId} resource operation is specified to return a &quot;Value&quot; but as evident from the model, the &quot;Value&quot; will always be &quot;oneOf&quot; either &quot;SingleValue&quot;, that has a &quot;value&quot; property for which the value is an object, or &quot;MultiValue&quot;, that has a &quot;values&quot; property for which the value is an array.<br/>Clients are advised to use the presence or absence of the plural array property (&quot;values&quot;, &quot;references&quot; and &quot;dataContainers&quot;) to determine the concrete type.</p><h1>Authentication</h1><p>The REST API is protected by HTTP Basic Authentication or if OAuth2-based authentication is enabled (SaaS customers only), by Bearer Authentication. With Basic Authentication, user name and password are supplied with each request and it is therefore highly recommended to only use the API in conjunction with HTTPS. For more information about OAuth2-based authentication for SaaS customers, please see the STEP Authentication Guide.</p><h1>Versioning</h1><p>The STEP REST API V2 is versioned using semantic versioning. Stibo Systems reserve the right to make non-breaking, minor / patch changes in any release without warning and clients must be coded / configured to be 'tolerant' and capable of handling such changes.</p><p>Examples of breaking, major changes:</p><ul><li>Renaming of a property</li><li>Removal of a property</li><li>Property type change</li><li>Addition of new property required for write operations</li><li>Marking existing property as required for write operations</li><li>Removal of resource or resource operation</li><li>Materially different behavior for existing resource operation</li></ul><p>Examples of non-breaking, minor / patch changes:</p><ul><li>Addition of new properties in request responses</li><li>Addition of new query parameter not required for write operations</li><li>Addition of new resource or resource operation</li><li>Bug fixes that do not change the schema or resource operations as described here</li><li>Inclusion of a response body for resource operations specified to return a 200 response with no body</li><li>Change of response &quot;Model&quot; / &quot;schema&quot; to type extending the previously specified type</li><li>Renaming a &quot;Model&quot; / &quot;schema&quot; type</li></ul><p>In addition, error message texts may change without warning within the same version. Client program logic should not depend upon the message content.</p><h1>Error Handling</h1><p>The STEP REST API V2 responds with standard HTTP status codes, with 2** responses indicating a success, 4** responses indicating a client error and 5** indicating a server error. Notice that this specification does not specify common error responses like 500 (internal server error) or 401 (unauthorized) for the individual resource operations. Clients should however be capable of handling such responses.</p><p>Error responses have a JSON response body (see Error schema below) containing HTTP status code information in addition to a message providing details about the error. As mentioned above, client program logic should not depend upon the message content.</p><p>The specific status codes used in the API are:</p><ul><li>200 (OK): Success, response may or may not have a body</li><li>201 (Created): Entity successfully created, response may or may not have a body</li><li>400 (Bad request): The server cannot or will not process the request due to an apparent client error</li><li>401 (Unauthorized): Returned only in relation to failed authentication</li><li>404 (Not Found): Returned only in relation to objects specified via path parameters (variable parts of the URL). If STEP objects referenced in request bodies or via query parameters cannot be found, the response will be 400.</li><li>429 (Too Many Requests): Clients are per default limited to 100 requests per second. Returned if the rate limit is exceeded.</li><li>500 (Internal Server Error): Unexpected error (could potentially cover an issue that rightfully should be a 400)</li></ul>
|
47
|
+
""", # noqa: E501
|
48
|
+
package_data={"step_rest_client": ["py.typed"]},
|
49
|
+
)
|