python3-core-api-client 6.0.2__py3-none-any.whl → 8.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.
@@ -413,3 +413,11 @@ class CoreApiConnector(CoreApiClient):
413
413
  @cached_property
414
414
  def health(self) -> resources.health.Health:
415
415
  return resources.health.Health(self)
416
+
417
+ @cached_property
418
+ def standards_scans(self) -> resources.standards_scans.StandardsScans:
419
+ return resources.standards_scans.StandardsScans(self)
420
+
421
+ @cached_property
422
+ def available_versions(self) -> resources.available_versions.AvailableVersions:
423
+ return resources.available_versions.AvailableVersions(self)