python3-core-api-client 7.0__py3-none-any.whl → 8.1__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.
@@ -320,6 +320,10 @@ class CoreApiConnector(CoreApiClient):
320
320
  ) -> resources.security_txt_policies.SecurityTxtPolicies:
321
321
  return resources.security_txt_policies.SecurityTxtPolicies(self)
322
322
 
323
+ @cached_property
324
+ def carbon_txts(self) -> resources.carbon_txts.CarbonTxts:
325
+ return resources.carbon_txts.CarbonTxts(self)
326
+
323
327
  @cached_property
324
328
  def firewall_groups(self) -> resources.firewall_groups.FirewallGroups:
325
329
  return resources.firewall_groups.FirewallGroups(self)
@@ -413,3 +417,11 @@ class CoreApiConnector(CoreApiClient):
413
417
  @cached_property
414
418
  def health(self) -> resources.health.Health:
415
419
  return resources.health.Health(self)
420
+
421
+ @cached_property
422
+ def standards_scans(self) -> resources.standards_scans.StandardsScans:
423
+ return resources.standards_scans.StandardsScans(self)
424
+
425
+ @cached_property
426
+ def available_versions(self) -> resources.available_versions.AvailableVersions:
427
+ return resources.available_versions.AvailableVersions(self)