Skip to content
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

add registry scan select endpoint #166

Merged
merged 1 commit into from
Feb 13, 2024
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
4 changes: 4 additions & 0 deletions prismacloud/api/cwpp/_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ def registry_list_image_names(self, query_params=None):
def registry_scan(self, body_params=None):
result = self.execute_compute('POST', 'api/v1/registry/scan', body_params=body_params)
return result

def registry_scan_select(self, body_params=None):
result = self.execute_compute('POST', 'api/v1/registry/scan/select', body_params=body_params)
return result
2 changes: 1 addition & 1 deletion prismacloud/api/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "5.2.11"
version = "5.2.12"
Loading