step_rest_client 1.0.0__py3-none-any.whl
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/__init__.py +136 -0
- step_rest_client/api/__init__.py +26 -0
- step_rest_client/api/assets_api.py +7960 -0
- step_rest_client/api/attributes_api.py +340 -0
- step_rest_client/api/background_process_types_api.py +640 -0
- step_rest_client/api/background_processes_api.py +1577 -0
- step_rest_client/api/classifications_api.py +7991 -0
- step_rest_client/api/data_container_types_api.py +340 -0
- step_rest_client/api/data_type_groups_api.py +340 -0
- step_rest_client/api/entities_api.py +8680 -0
- step_rest_client/api/event_processors_api.py +3337 -0
- step_rest_client/api/export_api.py +383 -0
- step_rest_client/api/gateway_integration_endpoints_api.py +1232 -0
- step_rest_client/api/import_api.py +390 -0
- step_rest_client/api/inbound_integration_endpoints_api.py +2815 -0
- step_rest_client/api/lists_of_values_api.py +642 -0
- step_rest_client/api/object_types_api.py +340 -0
- step_rest_client/api/outbound_integration_endpoints_api.py +3655 -0
- step_rest_client/api/products_api.py +8007 -0
- step_rest_client/api/reference_types_api.py +340 -0
- step_rest_client/api/reporting_api.py +707 -0
- step_rest_client/api/units_api.py +340 -0
- step_rest_client/api/workflow_tasks_api.py +1887 -0
- step_rest_client/api/workflows_api.py +1270 -0
- step_rest_client/api_client.py +797 -0
- step_rest_client/api_response.py +21 -0
- step_rest_client/configuration.py +597 -0
- step_rest_client/exceptions.py +216 -0
- step_rest_client/models/__init__.py +98 -0
- step_rest_client/models/amount.py +89 -0
- step_rest_client/models/and_condition.py +107 -0
- step_rest_client/models/approval_response.py +87 -0
- step_rest_client/models/approval_status.py +99 -0
- step_rest_client/models/asset.py +129 -0
- step_rest_client/models/attribute.py +120 -0
- step_rest_client/models/attribute_link.py +102 -0
- step_rest_client/models/background_process.py +139 -0
- step_rest_client/models/background_process_attachment_metadata.py +105 -0
- step_rest_client/models/background_process_identification.py +89 -0
- step_rest_client/models/background_process_type.py +89 -0
- step_rest_client/models/classification.py +135 -0
- step_rest_client/models/condition.py +265 -0
- step_rest_client/models/data_container.py +139 -0
- step_rest_client/models/data_container_entry.py +117 -0
- step_rest_client/models/data_container_object_condition.py +181 -0
- step_rest_client/models/data_container_type.py +106 -0
- step_rest_client/models/data_type_group.py +108 -0
- step_rest_client/models/endpoint_statistics.py +109 -0
- step_rest_client/models/endpoint_status.py +99 -0
- step_rest_client/models/entity.py +142 -0
- step_rest_client/models/error.py +91 -0
- step_rest_client/models/event_processor.py +93 -0
- step_rest_client/models/event_processor_statistics.py +97 -0
- step_rest_client/models/event_processor_status.py +99 -0
- step_rest_client/models/event_queue_status.py +89 -0
- step_rest_client/models/execution_report_entry.py +103 -0
- step_rest_client/models/export_specification.py +89 -0
- step_rest_client/models/find_similar_business_rule_result.py +91 -0
- step_rest_client/models/find_similar_entities_request.py +95 -0
- step_rest_client/models/find_similar_entities_response.py +103 -0
- step_rest_client/models/find_similar_entities_response_record.py +95 -0
- step_rest_client/models/find_similar_execution_report.py +103 -0
- step_rest_client/models/gateway_integration_endpoint.py +93 -0
- step_rest_client/models/has_data_container_object_condition.py +106 -0
- step_rest_client/models/has_reference_to_condition.py +108 -0
- step_rest_client/models/id_condition.py +105 -0
- step_rest_client/models/inbound_integration_endpoint.py +93 -0
- step_rest_client/models/incoming_reference_entry.py +118 -0
- step_rest_client/models/list_of_values.py +110 -0
- step_rest_client/models/list_of_values_entry.py +91 -0
- step_rest_client/models/lov_value_condition.py +100 -0
- step_rest_client/models/match_and_merge_execution_report.py +119 -0
- step_rest_client/models/match_and_merge_general_execution_report.py +91 -0
- step_rest_client/models/match_and_merge_potential_duplicate.py +93 -0
- step_rest_client/models/match_and_merge_record_in.py +95 -0
- step_rest_client/models/match_and_merge_record_out.py +117 -0
- step_rest_client/models/match_and_merge_response.py +103 -0
- step_rest_client/models/multi_data_container.py +101 -0
- step_rest_client/models/multi_reference.py +97 -0
- step_rest_client/models/multi_value.py +103 -0
- step_rest_client/models/name_condition.py +107 -0
- step_rest_client/models/numeric_value_condition.py +111 -0
- step_rest_client/models/object_type.py +104 -0
- step_rest_client/models/object_type_condition.py +96 -0
- step_rest_client/models/or_condition.py +107 -0
- step_rest_client/models/outbound_integration_endpoint.py +93 -0
- step_rest_client/models/product.py +150 -0
- step_rest_client/models/query.py +91 -0
- step_rest_client/models/query_result.py +99 -0
- step_rest_client/models/reference.py +139 -0
- step_rest_client/models/reference_entry.py +141 -0
- step_rest_client/models/reference_metadata_condition.py +181 -0
- step_rest_client/models/reference_type.py +114 -0
- step_rest_client/models/rejected_by_business_condition.py +93 -0
- step_rest_client/models/simple_below_condition.py +105 -0
- step_rest_client/models/single_data_container.py +97 -0
- step_rest_client/models/single_reference.py +93 -0
- step_rest_client/models/single_value.py +103 -0
- step_rest_client/models/status_flag.py +89 -0
- step_rest_client/models/text_value_condition.py +111 -0
- step_rest_client/models/trigger_workflow_event.py +93 -0
- step_rest_client/models/unit.py +104 -0
- step_rest_client/models/value.py +137 -0
- step_rest_client/models/value_entry.py +91 -0
- step_rest_client/models/workflow.py +91 -0
- step_rest_client/models/workflow_event.py +89 -0
- step_rest_client/models/workflow_instance.py +87 -0
- step_rest_client/models/workflow_instance_creation.py +93 -0
- step_rest_client/models/workflow_node.py +99 -0
- step_rest_client/models/workflow_task.py +113 -0
- step_rest_client/models/workflow_task_query.py +101 -0
- step_rest_client/py.typed +0 -0
- step_rest_client/rest.py +258 -0
- step_rest_client-1.0.0.dist-info/METADATA +23 -0
- step_rest_client-1.0.0.dist-info/RECORD +117 -0
- step_rest_client-1.0.0.dist-info/WHEEL +5 -0
- step_rest_client-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,101 @@
|
|
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 __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
22
|
+
from step_rest_client.models.workflow_node import WorkflowNode
|
23
|
+
from typing import Optional, Set
|
24
|
+
from typing_extensions import Self
|
25
|
+
|
26
|
+
class WorkflowTaskQuery(BaseModel):
|
27
|
+
"""
|
28
|
+
A workflow task query specification. All properties are optional query filters. If no values are supplied, the query will match all tasks assigned to the user executing the query and tasks assigned to groups that the user is a member of.
|
29
|
+
""" # noqa: E501
|
30
|
+
node: Optional[WorkflowNode] = None
|
31
|
+
workflow: Optional[StrictStr] = Field(default=None, description="Optional workflow filter. Can be populated with workflow ID.")
|
32
|
+
state: Optional[StrictStr] = Field(default=None, description="Optional state filter. Can be populated with state ID.")
|
33
|
+
status_flag: Optional[StrictStr] = Field(default=None, description="Optional status flag filter. Can be populated with status flag ID.", alias="statusFlag")
|
34
|
+
direct_assignment: Optional[StrictBool] = Field(default=False, description="If 'true', the query will match only tasks assigned directly to the user invoking the operation. If 'false', the query will match both tasks assigned directly to the user and tasks assigned to a group that the user is a member of.", alias="directAssignment")
|
35
|
+
include_non_leaf_tasks: Optional[StrictBool] = Field(default=False, description="If 'true', the query will match tasks for 'parallels' and 'clusters' in addition to 'leaf tasks'", alias="includeNonLeafTasks")
|
36
|
+
__properties: ClassVar[List[str]] = ["node", "workflow", "state", "statusFlag", "directAssignment", "includeNonLeafTasks"]
|
37
|
+
|
38
|
+
model_config = ConfigDict(
|
39
|
+
populate_by_name=True,
|
40
|
+
validate_assignment=True,
|
41
|
+
protected_namespaces=(),
|
42
|
+
)
|
43
|
+
|
44
|
+
|
45
|
+
def to_str(self) -> str:
|
46
|
+
"""Returns the string representation of the model using alias"""
|
47
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
48
|
+
|
49
|
+
def to_json(self) -> str:
|
50
|
+
"""Returns the JSON representation of the model using alias"""
|
51
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
52
|
+
return json.dumps(self.to_dict())
|
53
|
+
|
54
|
+
@classmethod
|
55
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
56
|
+
"""Create an instance of WorkflowTaskQuery from a JSON string"""
|
57
|
+
return cls.from_dict(json.loads(json_str))
|
58
|
+
|
59
|
+
def to_dict(self) -> Dict[str, Any]:
|
60
|
+
"""Return the dictionary representation of the model using alias.
|
61
|
+
|
62
|
+
This has the following differences from calling pydantic's
|
63
|
+
`self.model_dump(by_alias=True)`:
|
64
|
+
|
65
|
+
* `None` is only added to the output dict for nullable fields that
|
66
|
+
were set at model initialization. Other fields with value `None`
|
67
|
+
are ignored.
|
68
|
+
"""
|
69
|
+
excluded_fields: Set[str] = set([
|
70
|
+
])
|
71
|
+
|
72
|
+
_dict = self.model_dump(
|
73
|
+
by_alias=True,
|
74
|
+
exclude=excluded_fields,
|
75
|
+
exclude_none=True,
|
76
|
+
)
|
77
|
+
# override the default output from pydantic by calling `to_dict()` of node
|
78
|
+
if self.node:
|
79
|
+
_dict['node'] = self.node.to_dict()
|
80
|
+
return _dict
|
81
|
+
|
82
|
+
@classmethod
|
83
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
84
|
+
"""Create an instance of WorkflowTaskQuery from a dict"""
|
85
|
+
if obj is None:
|
86
|
+
return None
|
87
|
+
|
88
|
+
if not isinstance(obj, dict):
|
89
|
+
return cls.model_validate(obj)
|
90
|
+
|
91
|
+
_obj = cls.model_validate({
|
92
|
+
"node": WorkflowNode.from_dict(obj["node"]) if obj.get("node") is not None else None,
|
93
|
+
"workflow": obj.get("workflow"),
|
94
|
+
"state": obj.get("state"),
|
95
|
+
"statusFlag": obj.get("statusFlag"),
|
96
|
+
"directAssignment": obj.get("directAssignment") if obj.get("directAssignment") is not None else False,
|
97
|
+
"includeNonLeafTasks": obj.get("includeNonLeafTasks") if obj.get("includeNonLeafTasks") is not None else False
|
98
|
+
})
|
99
|
+
return _obj
|
100
|
+
|
101
|
+
|
File without changes
|
step_rest_client/rest.py
ADDED
@@ -0,0 +1,258 @@
|
|
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
|
+
import io
|
16
|
+
import json
|
17
|
+
import re
|
18
|
+
import ssl
|
19
|
+
|
20
|
+
import urllib3
|
21
|
+
|
22
|
+
from step_rest_client.exceptions import ApiException, ApiValueError
|
23
|
+
|
24
|
+
SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
|
25
|
+
RESTResponseType = urllib3.HTTPResponse
|
26
|
+
|
27
|
+
|
28
|
+
def is_socks_proxy_url(url):
|
29
|
+
if url is None:
|
30
|
+
return False
|
31
|
+
split_section = url.split("://")
|
32
|
+
if len(split_section) < 2:
|
33
|
+
return False
|
34
|
+
else:
|
35
|
+
return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
|
36
|
+
|
37
|
+
|
38
|
+
class RESTResponse(io.IOBase):
|
39
|
+
|
40
|
+
def __init__(self, resp) -> None:
|
41
|
+
self.response = resp
|
42
|
+
self.status = resp.status
|
43
|
+
self.reason = resp.reason
|
44
|
+
self.data = None
|
45
|
+
|
46
|
+
def read(self):
|
47
|
+
if self.data is None:
|
48
|
+
self.data = self.response.data
|
49
|
+
return self.data
|
50
|
+
|
51
|
+
def getheaders(self):
|
52
|
+
"""Returns a dictionary of the response headers."""
|
53
|
+
return self.response.headers
|
54
|
+
|
55
|
+
def getheader(self, name, default=None):
|
56
|
+
"""Returns a given response header."""
|
57
|
+
return self.response.headers.get(name, default)
|
58
|
+
|
59
|
+
|
60
|
+
class RESTClientObject:
|
61
|
+
|
62
|
+
def __init__(self, configuration) -> None:
|
63
|
+
# urllib3.PoolManager will pass all kw parameters to connectionpool
|
64
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
|
65
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
|
66
|
+
# Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
|
67
|
+
|
68
|
+
# cert_reqs
|
69
|
+
if configuration.verify_ssl:
|
70
|
+
cert_reqs = ssl.CERT_REQUIRED
|
71
|
+
else:
|
72
|
+
cert_reqs = ssl.CERT_NONE
|
73
|
+
|
74
|
+
pool_args = {
|
75
|
+
"cert_reqs": cert_reqs,
|
76
|
+
"ca_certs": configuration.ssl_ca_cert,
|
77
|
+
"cert_file": configuration.cert_file,
|
78
|
+
"key_file": configuration.key_file,
|
79
|
+
"ca_cert_data": configuration.ca_cert_data,
|
80
|
+
}
|
81
|
+
if configuration.assert_hostname is not None:
|
82
|
+
pool_args['assert_hostname'] = (
|
83
|
+
configuration.assert_hostname
|
84
|
+
)
|
85
|
+
|
86
|
+
if configuration.retries is not None:
|
87
|
+
pool_args['retries'] = configuration.retries
|
88
|
+
|
89
|
+
if configuration.tls_server_name:
|
90
|
+
pool_args['server_hostname'] = configuration.tls_server_name
|
91
|
+
|
92
|
+
|
93
|
+
if configuration.socket_options is not None:
|
94
|
+
pool_args['socket_options'] = configuration.socket_options
|
95
|
+
|
96
|
+
if configuration.connection_pool_maxsize is not None:
|
97
|
+
pool_args['maxsize'] = configuration.connection_pool_maxsize
|
98
|
+
|
99
|
+
# https pool manager
|
100
|
+
self.pool_manager: urllib3.PoolManager
|
101
|
+
|
102
|
+
if configuration.proxy:
|
103
|
+
if is_socks_proxy_url(configuration.proxy):
|
104
|
+
from urllib3.contrib.socks import SOCKSProxyManager
|
105
|
+
pool_args["proxy_url"] = configuration.proxy
|
106
|
+
pool_args["headers"] = configuration.proxy_headers
|
107
|
+
self.pool_manager = SOCKSProxyManager(**pool_args)
|
108
|
+
else:
|
109
|
+
pool_args["proxy_url"] = configuration.proxy
|
110
|
+
pool_args["proxy_headers"] = configuration.proxy_headers
|
111
|
+
self.pool_manager = urllib3.ProxyManager(**pool_args)
|
112
|
+
else:
|
113
|
+
self.pool_manager = urllib3.PoolManager(**pool_args)
|
114
|
+
|
115
|
+
def request(
|
116
|
+
self,
|
117
|
+
method,
|
118
|
+
url,
|
119
|
+
headers=None,
|
120
|
+
body=None,
|
121
|
+
post_params=None,
|
122
|
+
_request_timeout=None
|
123
|
+
):
|
124
|
+
"""Perform requests.
|
125
|
+
|
126
|
+
:param method: http request method
|
127
|
+
:param url: http request url
|
128
|
+
:param headers: http request headers
|
129
|
+
:param body: request json body, for `application/json`
|
130
|
+
:param post_params: request post parameters,
|
131
|
+
`application/x-www-form-urlencoded`
|
132
|
+
and `multipart/form-data`
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
134
|
+
number provided, it will be total request
|
135
|
+
timeout. It can also be a pair (tuple) of
|
136
|
+
(connection, read) timeouts.
|
137
|
+
"""
|
138
|
+
method = method.upper()
|
139
|
+
assert method in [
|
140
|
+
'GET',
|
141
|
+
'HEAD',
|
142
|
+
'DELETE',
|
143
|
+
'POST',
|
144
|
+
'PUT',
|
145
|
+
'PATCH',
|
146
|
+
'OPTIONS'
|
147
|
+
]
|
148
|
+
|
149
|
+
if post_params and body:
|
150
|
+
raise ApiValueError(
|
151
|
+
"body parameter cannot be used with post_params parameter."
|
152
|
+
)
|
153
|
+
|
154
|
+
post_params = post_params or {}
|
155
|
+
headers = headers or {}
|
156
|
+
|
157
|
+
timeout = None
|
158
|
+
if _request_timeout:
|
159
|
+
if isinstance(_request_timeout, (int, float)):
|
160
|
+
timeout = urllib3.Timeout(total=_request_timeout)
|
161
|
+
elif (
|
162
|
+
isinstance(_request_timeout, tuple)
|
163
|
+
and len(_request_timeout) == 2
|
164
|
+
):
|
165
|
+
timeout = urllib3.Timeout(
|
166
|
+
connect=_request_timeout[0],
|
167
|
+
read=_request_timeout[1]
|
168
|
+
)
|
169
|
+
|
170
|
+
try:
|
171
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
172
|
+
if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
|
173
|
+
|
174
|
+
# no content type provided or payload is json
|
175
|
+
content_type = headers.get('Content-Type')
|
176
|
+
if (
|
177
|
+
not content_type
|
178
|
+
or re.search('json', content_type, re.IGNORECASE)
|
179
|
+
):
|
180
|
+
request_body = None
|
181
|
+
if body is not None:
|
182
|
+
request_body = json.dumps(body)
|
183
|
+
r = self.pool_manager.request(
|
184
|
+
method,
|
185
|
+
url,
|
186
|
+
body=request_body,
|
187
|
+
timeout=timeout,
|
188
|
+
headers=headers,
|
189
|
+
preload_content=False
|
190
|
+
)
|
191
|
+
elif content_type == 'application/x-www-form-urlencoded':
|
192
|
+
r = self.pool_manager.request(
|
193
|
+
method,
|
194
|
+
url,
|
195
|
+
fields=post_params,
|
196
|
+
encode_multipart=False,
|
197
|
+
timeout=timeout,
|
198
|
+
headers=headers,
|
199
|
+
preload_content=False
|
200
|
+
)
|
201
|
+
elif content_type == 'multipart/form-data':
|
202
|
+
# must del headers['Content-Type'], or the correct
|
203
|
+
# Content-Type which generated by urllib3 will be
|
204
|
+
# overwritten.
|
205
|
+
del headers['Content-Type']
|
206
|
+
# Ensures that dict objects are serialized
|
207
|
+
post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
|
208
|
+
r = self.pool_manager.request(
|
209
|
+
method,
|
210
|
+
url,
|
211
|
+
fields=post_params,
|
212
|
+
encode_multipart=True,
|
213
|
+
timeout=timeout,
|
214
|
+
headers=headers,
|
215
|
+
preload_content=False
|
216
|
+
)
|
217
|
+
# Pass a `string` parameter directly in the body to support
|
218
|
+
# other content types than JSON when `body` argument is
|
219
|
+
# provided in serialized form.
|
220
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
221
|
+
r = self.pool_manager.request(
|
222
|
+
method,
|
223
|
+
url,
|
224
|
+
body=body,
|
225
|
+
timeout=timeout,
|
226
|
+
headers=headers,
|
227
|
+
preload_content=False
|
228
|
+
)
|
229
|
+
elif headers['Content-Type'].startswith('text/') and isinstance(body, bool):
|
230
|
+
request_body = "true" if body else "false"
|
231
|
+
r = self.pool_manager.request(
|
232
|
+
method,
|
233
|
+
url,
|
234
|
+
body=request_body,
|
235
|
+
preload_content=False,
|
236
|
+
timeout=timeout,
|
237
|
+
headers=headers)
|
238
|
+
else:
|
239
|
+
# Cannot generate the request from given parameters
|
240
|
+
msg = """Cannot prepare a request message for provided
|
241
|
+
arguments. Please check that your arguments match
|
242
|
+
declared content type."""
|
243
|
+
raise ApiException(status=0, reason=msg)
|
244
|
+
# For `GET`, `HEAD`
|
245
|
+
else:
|
246
|
+
r = self.pool_manager.request(
|
247
|
+
method,
|
248
|
+
url,
|
249
|
+
fields={},
|
250
|
+
timeout=timeout,
|
251
|
+
headers=headers,
|
252
|
+
preload_content=False
|
253
|
+
)
|
254
|
+
except urllib3.exceptions.SSLError as e:
|
255
|
+
msg = "\n".join([type(e).__name__, str(e)])
|
256
|
+
raise ApiException(status=0, reason=msg)
|
257
|
+
|
258
|
+
return RESTResponse(r)
|
@@ -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,117 @@
|
|
1
|
+
step_rest_client/__init__.py,sha256=BFLjrrRmnD0kwzBwLTZ--H1w7khd2XNwiEti4jCYUbk,13667
|
2
|
+
step_rest_client/api_client.py,sha256=IRqD98Klqk2F3T0-AMvLgu4JlO4gqdqt0w2SG6_xoyg,32581
|
3
|
+
step_rest_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
+
step_rest_client/configuration.py,sha256=jUrlKgq2nAWWEpWzTeGYeTg_5yvSTg9TO4lykcurG20,23730
|
5
|
+
step_rest_client/exceptions.py,sha256=Wd5dKUkmD1Xu_IdylbkzN64kK7JPylFce6MuvwnWFR4,11566
|
6
|
+
step_rest_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
step_rest_client/rest.py,sha256=wIDkNNb1Whzaduazcn2tDuHI_we5Q4HF4R-GHVB4WWM,14565
|
8
|
+
step_rest_client/api/__init__.py,sha256=1SdIBjUFVEzFopfXB-eBgRa5iRIWHjbuZnp2uQQc7NY,1597
|
9
|
+
step_rest_client/api/assets_api.py,sha256=zlrVmsHL-H7Azii1t7ghpSDTpaSvJ4fJJdk43_8kMCM,392583
|
10
|
+
step_rest_client/api/attributes_api.py,sha256=ONeslOzntZchqI1M1b2dBX1N2nNwFgt3irZMncnz5Qo,18644
|
11
|
+
step_rest_client/api/background_process_types_api.py,sha256=Ak7cU18dvB1ZqlSOfI3rQ5eeroMQ1JCp-69QwiV6TvU,31801
|
12
|
+
step_rest_client/api/background_processes_api.py,sha256=nwWO-9d__J9AKKdfVrfShqcmVHaAiChzGmFJzOXMyPI,72762
|
13
|
+
step_rest_client/api/classifications_api.py,sha256=-bq6Tw0eaXPsfpWdi2-XwX2lwGRs4hhOfQvWSociNHk,406731
|
14
|
+
step_rest_client/api/data_container_types_api.py,sha256=OCs2C31v-1izgjpRqcS7SFGQAxDztCwFEzz50_ByoJo,18748
|
15
|
+
step_rest_client/api/data_type_groups_api.py,sha256=HeLVBXa3QBot40bIpjdb6P9pkTl6__OIMsO-v6gZq1o,18885
|
16
|
+
step_rest_client/api/entities_api.py,sha256=DQ1mWjO5OZdTeGRT4r6b7MF7S9ghj26KsHs5KsTLQ98,432723
|
17
|
+
step_rest_client/api/event_processors_api.py,sha256=0H1Mb8GbnYawwxX1pGAr41mWPrjyXKslbRKhneqolIY,145509
|
18
|
+
step_rest_client/api/export_api.py,sha256=bmtRZCYm38M4cAUO6cU8SksM8H4YtAYsmdOFyld8aS8,23547
|
19
|
+
step_rest_client/api/gateway_integration_endpoints_api.py,sha256=o9Kedao1S3iQ4Zpz8DICoDsR9bsaO6lOThWpf6ReKWI,57002
|
20
|
+
step_rest_client/api/import_api.py,sha256=vHBTbau9APzzDw2Jf_m6-UBqjpFzVUxWF5hf9IknxkQ,22063
|
21
|
+
step_rest_client/api/inbound_integration_endpoints_api.py,sha256=zY3humQOCM1rP4vPFXoz1n91pKlo50NvKDNjKdkvoYo,125525
|
22
|
+
step_rest_client/api/lists_of_values_api.py,sha256=ElG8Dvu0ikTW-auf2nAuiuGX1R3SUFEjL4ZupyaUJx0,32150
|
23
|
+
step_rest_client/api/object_types_api.py,sha256=IYYr7QndjnbymBYnL1WoEeV7_6V1uvvkaLYnPJpvn-8,18672
|
24
|
+
step_rest_client/api/outbound_integration_endpoints_api.py,sha256=-VDeGqNdSTvRObFGxJfyyV_TvRfLBqPr2PE_lLr4Quk,163241
|
25
|
+
step_rest_client/api/products_api.py,sha256=JFQO5MHwAiPXdZbubQKxXkZtH65qTyfXhns5gdGKT90,404721
|
26
|
+
step_rest_client/api/reference_types_api.py,sha256=OYxKjSXyr0j2WdY3ksuV1cqVJkEV-cd67CKXuFMU7wE,19101
|
27
|
+
step_rest_client/api/reporting_api.py,sha256=oZSntv26AH2Q5yYOIB1dUmKWgX2ccoDdxgb_iyBiI0U,40075
|
28
|
+
step_rest_client/api/units_api.py,sha256=SfxBDorgpivfXPfLGS1EZALlfM4kR0pGPIu1ToJyeRM,18504
|
29
|
+
step_rest_client/api/workflow_tasks_api.py,sha256=Nj4eM-aj6psNNKRotyZs6bdWU9mToA_4pUcL10oSWUg,82762
|
30
|
+
step_rest_client/api/workflows_api.py,sha256=oBMB0Cc8xg0PtqVFmabOxdOkR7isyKfB_XMz5JpEaDo,56807
|
31
|
+
step_rest_client/models/__init__.py,sha256=4pLGvXoKUifN8fHFus2X4JmMM-uVOQ_esMsNTgtQJg0,11556
|
32
|
+
step_rest_client/models/amount.py,sha256=IV2ap4-uxaIwt0Yg3YQFsgTMnrT0rJUH-hVhboKKVc4,7712
|
33
|
+
step_rest_client/models/and_condition.py,sha256=TZiMSZs1xKonekzj5LgVYXEB_hvkPLXcwv8PUFlumhA,9123
|
34
|
+
step_rest_client/models/approval_response.py,sha256=upzl6ImeO1Zzdu9T9C5XRORKw4bOKR9JPyGDqxO7cM4,7906
|
35
|
+
step_rest_client/models/approval_status.py,sha256=7eQiijHj4FjahIsiIi_uZ6O5dLTkB7nHk87uCfBBIVA,8283
|
36
|
+
step_rest_client/models/asset.py,sha256=4CHtmxEvhqGo9ipTN3YzIym7EZYB9nvRHtA7uBF78BA,10380
|
37
|
+
step_rest_client/models/attribute.py,sha256=RcAoVEzLHwWPkKSGfZyWDQ-p_YcuvhhDmMUT1z8PE7Y,10285
|
38
|
+
step_rest_client/models/attribute_link.py,sha256=VDfWu-EiJVs9MdTRPV-FrSSR1PFdDS765EffCekof9w,8612
|
39
|
+
step_rest_client/models/background_process.py,sha256=8czIYt4bPKY5OGkYUe-HL2wPE5NwwbQlLp_uEYciJ0g,11002
|
40
|
+
step_rest_client/models/background_process_attachment_metadata.py,sha256=YGWf5LIJSx2V6HHiX56Lz-GeL_4e6B7FdtCdxNVTCfk,9064
|
41
|
+
step_rest_client/models/background_process_identification.py,sha256=5o3sUOEjMmcD15mVxyKkcARGk8i9Icw7Ncb3GwFEQvg,7796
|
42
|
+
step_rest_client/models/background_process_type.py,sha256=NWfOATIz9eLyUpQ95_jwWZvcilY7yFHmuZJozlvh67o,7755
|
43
|
+
step_rest_client/models/classification.py,sha256=UZ9wYWDbZOwbOl9Ajdc5HN1-k_Vr-WzECUw0QWBeBgc,10774
|
44
|
+
step_rest_client/models/condition.py,sha256=YwztBACxPEZ4Hrx7KU1Tqd3LqvRioTdi1qIVeK0ulzw,18357
|
45
|
+
step_rest_client/models/data_container.py,sha256=nKGaQvZat0iA8S39Wd85WHCP4egA92uXNp4SeaoyxEc,10816
|
46
|
+
step_rest_client/models/data_container_entry.py,sha256=49lIh3UOFoVTT5LdQ0WK7mAIC-LxdfMMv5QwurKslMA,9463
|
47
|
+
step_rest_client/models/data_container_object_condition.py,sha256=lhZSbkhGcNjz5VkFawALIfTbZa0R3K-SwpUKKrh5Ooo,13374
|
48
|
+
step_rest_client/models/data_container_type.py,sha256=4WmgpP2OTwdaV8zqhz6SwvNrkwn0I8dpxYcOQrk-Au4,8945
|
49
|
+
step_rest_client/models/data_type_group.py,sha256=qtbJPNz_j02oe6I6vD3MNeds3dJyrkqiYEI3a3sdCN0,8903
|
50
|
+
step_rest_client/models/endpoint_statistics.py,sha256=EzV7C1yKlckhw21EogWR9QiIHUH5u4BbEOzFgsq_XTA,10109
|
51
|
+
step_rest_client/models/endpoint_status.py,sha256=DWzKkfv7_PgUCUaoHAdNTVVu6KO2i95m0mXM1blnSHw,8119
|
52
|
+
step_rest_client/models/entity.py,sha256=QT09PYywMs9Mpe2UH5And0pfkgS5Z-OFTz-PUEh6Bbk,11075
|
53
|
+
step_rest_client/models/error.py,sha256=w7eers6J6ZyAdLRaAJX-0qbbt7SAFeOCY5QGei4SbQ4,8144
|
54
|
+
step_rest_client/models/event_processor.py,sha256=ICqlwx0BBGMUivbIlw_dFcmHYT_-GqJLBk0Qc63Oego,7943
|
55
|
+
step_rest_client/models/event_processor_statistics.py,sha256=JJFurgOmwWipNkIGcKnAmfiWlGsEu6Q9NQNQUHfXa2M,8589
|
56
|
+
step_rest_client/models/event_processor_status.py,sha256=Z1q6dkbplsrsdlznVLURea0vkUHBPpou11RdjuK_Bxo,8122
|
57
|
+
step_rest_client/models/event_queue_status.py,sha256=ihbr80bu0Tx6_p3gR1VFqFNO0Vm9iegy3MGT3M266mc,7822
|
58
|
+
step_rest_client/models/execution_report_entry.py,sha256=C-tOORSE-lAQxfCCAGV11ddMR4T-NZLSmL3Ywjlo1Ic,8445
|
59
|
+
step_rest_client/models/export_specification.py,sha256=d-09XLXq5-jjft8UpBuAhYA_Vtxw4kfxZWgHUyVU7Js,8193
|
60
|
+
step_rest_client/models/find_similar_business_rule_result.py,sha256=kzI4XdZmWyljOql6vK3RP-2EirGRl4EpjImw8zbTRqo,8409
|
61
|
+
step_rest_client/models/find_similar_entities_request.py,sha256=4RA7ioa1uva2IMyWea1hUQvC4H9i6rWeW4xkiaFNW-8,8351
|
62
|
+
step_rest_client/models/find_similar_entities_response.py,sha256=7CqRIXbw4n-wDASdZV2QNoOywANCNvPF1l65GTgOkV4,9290
|
63
|
+
step_rest_client/models/find_similar_entities_response_record.py,sha256=C3b-nf24_VdJ9Jjvk7y98aHNix6quLYQZFxcNTrfJ3Y,8255
|
64
|
+
step_rest_client/models/find_similar_execution_report.py,sha256=3nDACsZKwyiZ8zeefLOmB9fm0M4Ht3mJMjRpBBNJX-0,9422
|
65
|
+
step_rest_client/models/gateway_integration_endpoint.py,sha256=EOwBIY5ytb-DQUnil68Vc3fac5fFnpKK4MPPrOrHOAY,8018
|
66
|
+
step_rest_client/models/has_data_container_object_condition.py,sha256=Pfev1l_35b_xiFLsvAYKlJNAHU9pvdrtIESoTeNod7c,9621
|
67
|
+
step_rest_client/models/has_reference_to_condition.py,sha256=Z6lpc1sWKDjePDk8nniTDC-rZaNjBHMRDIxnTzImesc,9878
|
68
|
+
step_rest_client/models/id_condition.py,sha256=DVG8w1cU-AOj-C_B7s4cOdkMFYCUS33PVqauTEDhNbQ,9251
|
69
|
+
step_rest_client/models/inbound_integration_endpoint.py,sha256=xhm8zDwhKCGMKYhcs21QCnwaZRuPTnsMeceIoxpUQOk,8018
|
70
|
+
step_rest_client/models/incoming_reference_entry.py,sha256=7AvYnIssw6FJt9xLjtX8gnqlzN5b2Myob--QXZr89Fo,9383
|
71
|
+
step_rest_client/models/list_of_values.py,sha256=rIGIUzvzrMY1ivUDaSnKZBCkcUwpXYjaF8RkEMYVCsA,9310
|
72
|
+
step_rest_client/models/list_of_values_entry.py,sha256=_QRCVP3RzIaBIH8GwanZjiHtG08UGO-4uwj9vC4YM3Y,8012
|
73
|
+
step_rest_client/models/lov_value_condition.py,sha256=vSyVs7tdO0PEArVT_v4IQ7hoxjkSatEATcXgN9lSVZM,9030
|
74
|
+
step_rest_client/models/match_and_merge_execution_report.py,sha256=rQXaZidgjPB-g3j0lkpU3PMKCMxtDZhbsJIEahufgT0,10050
|
75
|
+
step_rest_client/models/match_and_merge_general_execution_report.py,sha256=sYvEfCkIWEs5peyO-k2Z8RWNUyknki0-PjN7b9psiP8,8212
|
76
|
+
step_rest_client/models/match_and_merge_potential_duplicate.py,sha256=5HGMFoUvo_I0u2b97JkSgsx9x-BPKVmHAITqKVDLwv4,8084
|
77
|
+
step_rest_client/models/match_and_merge_record_in.py,sha256=v14Q-1poEq-ez-rObaQoNdUPYPhnrXHYxs_4aRDFaCI,8228
|
78
|
+
step_rest_client/models/match_and_merge_record_out.py,sha256=Elx-XqfJLhIjC5TDem0O3eR1qiA5FF8aKrYrzFD1nAI,10212
|
79
|
+
step_rest_client/models/match_and_merge_response.py,sha256=AGD9Opjj_A25vuRBO8g_P9uQmWLdC9-RlJu7Au1z87s,9487
|
80
|
+
step_rest_client/models/multi_data_container.py,sha256=5MCRXfDUg3WZHKVKXvafZdQSOU-0ejo-crtvz9uYd-U,8722
|
81
|
+
step_rest_client/models/multi_reference.py,sha256=pl5XDhN-Lje_YFF7iai3-OumKgbPO5TsqvCgjKhBJw0,8399
|
82
|
+
step_rest_client/models/multi_value.py,sha256=qWZdhQ0FfA8eqD3Xs8R3e3PeRY4bB6r45jZSQwrQcAA,8975
|
83
|
+
step_rest_client/models/name_condition.py,sha256=LikONQCjIx8glPGyfy7mW11i8IqUNn3yNneiU5bAZ94,9529
|
84
|
+
step_rest_client/models/numeric_value_condition.py,sha256=OG6RzA0XQisYteDWTd8QM_fsZoBoZ9nhYkAhgL4jtYk,9973
|
85
|
+
step_rest_client/models/object_type.py,sha256=d9IKxEhHKlToZqyDNNFryfyxLqOMk8x9dp2ju7Vpwfs,8633
|
86
|
+
step_rest_client/models/object_type_condition.py,sha256=L289WF2ofWd-XhFEeKZXNpgBTniGXBb_pw0gEunpeTo,8450
|
87
|
+
step_rest_client/models/or_condition.py,sha256=0TujUrj3Za6drQceM-Rlcoc5CR_CV5EcmO9R1pJsSKI,9116
|
88
|
+
step_rest_client/models/outbound_integration_endpoint.py,sha256=j1ktEhny-XX-UVT-BR9sIKgEEzPPRr6RWhWIOVvpfcc,8024
|
89
|
+
step_rest_client/models/product.py,sha256=zre0RB4WtTwjcrHU_QVNyFo7eOd8cCwawTlY0hxBUFw,11780
|
90
|
+
step_rest_client/models/query.py,sha256=FbPyJAEWoIVL-GfwH81FAIjumHV-AQk5ofKe1XRIJpc,7935
|
91
|
+
step_rest_client/models/query_result.py,sha256=RvlKS-f5Kf8ojMhQkSi7m289Nc8kAJVa0WzF9v-kh4U,8214
|
92
|
+
step_rest_client/models/reference.py,sha256=v8cxYKfybkzfLvzLcNqmGvh7aopWOKpYuZ6qlDTep14,10657
|
93
|
+
step_rest_client/models/reference_entry.py,sha256=EO1nRm6KAKNkjr68QKmvt3O6mi7xjOllCaHBDnLCPWw,11377
|
94
|
+
step_rest_client/models/reference_metadata_condition.py,sha256=sXvAiDkl5W3lqgLZ6YmpM3ATMN3qoex3vvHpOekFQkk,13351
|
95
|
+
step_rest_client/models/reference_type.py,sha256=nQw6R5lltG8R-bDeAxExqcqdHck3C5xa45zR_K8_IHA,10074
|
96
|
+
step_rest_client/models/rejected_by_business_condition.py,sha256=6U8sv5hfFSD9ApaEt0BiqDVprFhFrAE5piwPJkUOmCU,8426
|
97
|
+
step_rest_client/models/simple_below_condition.py,sha256=n7mpoBWUSsHqso3AK3UEXicZyY3Qf0ax4huWssdWTP8,8960
|
98
|
+
step_rest_client/models/single_data_container.py,sha256=0XSkZavmWQMC4xH1RS_FW98U_dzl1jY4MUd-a6sHK6o,8456
|
99
|
+
step_rest_client/models/single_reference.py,sha256=76OCCZYPMWxJASgXZhhwS46uPPCdTc2vY2dj754bc8k,8113
|
100
|
+
step_rest_client/models/single_value.py,sha256=SoZvoZyuMNH1-gXQWrjCeJswJ4iL-yzZtdvFmHxK5R4,9088
|
101
|
+
step_rest_client/models/status_flag.py,sha256=pPfZ-NsTPcVf4fMhvAQ-YscAhxvY0WbOkkHZYejWYsw,7776
|
102
|
+
step_rest_client/models/text_value_condition.py,sha256=N8Y770zzBhpIElgjUXIE6Gp1hLG2X4yRsD-FefMZHkM,10101
|
103
|
+
step_rest_client/models/trigger_workflow_event.py,sha256=_l3fkSnJI85FJt-DDbb9xC5uwgFxibWwrKscOE523uM,8120
|
104
|
+
step_rest_client/models/unit.py,sha256=zOhJcgOrPRDL1_2513yR3wlgS0sCHBOMmjJBVxRUAow,8586
|
105
|
+
step_rest_client/models/value.py,sha256=y6qY8gG-FLaB634lnfWrB2EXE5vr9rU4cuoIBjgbka8,10363
|
106
|
+
step_rest_client/models/value_entry.py,sha256=QBpQmc4FFTd0XVPIftCi2yhUb78kCOwwI5DfKYnIG9c,8295
|
107
|
+
step_rest_client/models/workflow.py,sha256=orEZcSvut0NyyVpi3y9fbcEBfY0akrZ_JDcHQHroTsE,8022
|
108
|
+
step_rest_client/models/workflow_event.py,sha256=yphi3G2fkOmYP59g9nH_B77SgbPaFGrVinOOn97TyVo,7959
|
109
|
+
step_rest_client/models/workflow_instance.py,sha256=n6WOQvHLI7mDNj-g7hdiPnYl6JC3Wk__2WZ5ajAW5GY,7679
|
110
|
+
step_rest_client/models/workflow_instance_creation.py,sha256=eRDunOq0AWScsF7YL8e4jC0bLOhfNozKwTK9Pj4HT8I,8135
|
111
|
+
step_rest_client/models/workflow_node.py,sha256=HAS3t8cxjd_wepiu0IyFrh5iWAEQjBLQvZ6Z5JI0Oao,8230
|
112
|
+
step_rest_client/models/workflow_task.py,sha256=Q26zgU_iiErYuokAF8_KdtvbIRanJPfxSx6OH6blmiU,10008
|
113
|
+
step_rest_client/models/workflow_task_query.py,sha256=pR4aHzB2kRyinSS5ZmN6Qsw5F5d_6EYRcjwi931IsJ0,9543
|
114
|
+
step_rest_client-1.0.0.dist-info/METADATA,sha256=h9nF7GCTWtrMB3qXZ6I-QKqraX_r080wPQuPyKHEJ6U,6424
|
115
|
+
step_rest_client-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
116
|
+
step_rest_client-1.0.0.dist-info/top_level.txt,sha256=D1sOIzUOKzVH1gx1BcUqbOTd7deig2GWYIc8-ydAoGQ,17
|
117
|
+
step_rest_client-1.0.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
step_rest_client
|