Skip to content

fix: add functionality for authentication #16 #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions aas_python_http_client/api/aasx_file_server_api_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def delete_aasxby_package_id_with_http_info(self, package_id, **kwargs): # noqa
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/packages/{packageId}', 'DELETE',
Expand Down Expand Up @@ -200,7 +200,7 @@ def get_aasxby_package_id_with_http_info(self, package_id, **kwargs): # noqa: E
['application/asset-administration-shell-package', 'application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/packages/{packageId}', 'GET',
Expand Down Expand Up @@ -297,7 +297,7 @@ def get_all_aasx_package_ids_with_http_info(self, **kwargs): # noqa: E501
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/packages', 'GET',
Expand Down Expand Up @@ -411,7 +411,7 @@ def post_aasx_package_with_http_info(self, aas_ids, file, file_name, **kwargs):
['multipart/form-data']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/packages', 'POST',
Expand Down Expand Up @@ -533,7 +533,7 @@ def put_aasxby_package_id_with_http_info(self, aas_ids, file, file_name, package
['multipart/form-data']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/packages/{packageId}', 'PUT',
Expand Down
96 changes: 48 additions & 48 deletions aas_python_http_client/api/asset_administration_shell_api_api.py

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def delete_all_asset_links_by_id_with_http_info(self, aas_identifier, **kwargs):
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/lookup/shells/{aasIdentifier}', 'DELETE',
Expand Down Expand Up @@ -205,7 +205,7 @@ def get_all_asset_administration_shell_ids_by_asset_link_with_http_info(self, **
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/lookup/shells', 'GET',
Expand Down Expand Up @@ -298,7 +298,7 @@ def get_all_asset_links_by_id_with_http_info(self, aas_identifier, **kwargs): #
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/lookup/shells/{aasIdentifier}', 'GET',
Expand Down Expand Up @@ -403,7 +403,7 @@ def post_all_asset_links_by_id_with_http_info(self, body, aas_identifier, **kwar
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/lookup/shells/{aasIdentifier}', 'POST',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def delete_asset_administration_shell_descriptor_by_id_with_http_info(self, aas_
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}', 'DELETE',
Expand Down Expand Up @@ -208,7 +208,7 @@ def delete_submodel_descriptor_by_id_through_superpath_with_http_info(self, aas_
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}/submodel-descriptors/{submodelIdentifier}', 'DELETE',
Expand Down Expand Up @@ -309,7 +309,7 @@ def get_all_asset_administration_shell_descriptors_with_http_info(self, **kwargs
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors', 'GET',
Expand Down Expand Up @@ -410,7 +410,7 @@ def get_all_submodel_descriptors_through_superpath_with_http_info(self, aas_iden
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}/submodel-descriptors', 'GET',
Expand Down Expand Up @@ -503,7 +503,7 @@ def get_asset_administration_shell_descriptor_by_id_with_http_info(self, aas_ide
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}', 'GET',
Expand Down Expand Up @@ -604,7 +604,7 @@ def get_submodel_descriptor_by_id_through_superpath_with_http_info(self, aas_ide
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}/submodel-descriptors/{submodelIdentifier}', 'GET',
Expand Down Expand Up @@ -701,7 +701,7 @@ def post_asset_administration_shell_descriptor_with_http_info(self, body, **kwar
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors', 'POST',
Expand Down Expand Up @@ -806,7 +806,7 @@ def post_submodel_descriptor_through_superpath_with_http_info(self, body, aas_id
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}/submodel-descriptors', 'POST',
Expand Down Expand Up @@ -911,7 +911,7 @@ def put_asset_administration_shell_descriptor_by_id_with_http_info(self, body, a
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}', 'PUT',
Expand Down Expand Up @@ -1024,7 +1024,7 @@ def put_submodel_descriptor_by_id_through_superpath_with_http_info(self, body, a
['application/json']) # noqa: E501

# Authentication setting
auth_settings = [] # noqa: E501
auth_settings = self.api_client.configuration.get_auth_settings_keys() # noqa: E501

return self.api_client.call_api(
'/shell-descriptors/{aasIdentifier}/submodel-descriptors/{submodelIdentifier}', 'PUT',
Expand Down
Loading