Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 2.43 KB

File metadata and controls

60 lines (43 loc) · 2.43 KB

5.1.0 (2026-05-04)

Full Changelog: v5.0.0...v5.1.0

Features

  • security_center: add audit_logs, classification, and context sub-resources to insights (ed7d261)
  • zero_trust: add deployment_groups sub-resource to devices (7121a55)
  • aisearch: update generated types and methods (54b87759)
  • email_security: update generated types and methods (23a979df)
  • radar: update generated types and methods (b48274ef)
  • zones: update generated types and methods (f0a54099)

Security Center - New Insights Sub-Resources

AuditLogs (client.security_center.insights.audit_logs)

  • list(*, account_id, zone_id, **params) -> SyncCursorPagination[AuditLogListResponse]
  • list_by_insight(issue_id, *, account_id, zone_id, **params) -> SyncCursorPagination[AuditLogListByInsightResponse]

New types:

from cloudflare.types.security_center.insights import (
    AuditLogListResponse,
    AuditLogListByInsightResponse,
)

Classification (client.security_center.insights.classification)

  • update(issue_id, *, account_id, zone_id, **params) -> ClassificationUpdateResponse

New types:

from cloudflare.types.security_center.insights import ClassificationUpdateResponse

Context (client.security_center.insights.context)

  • get(issue_id, *, account_id) -> Optional[ContextGetResponse]

New types:

from cloudflare.types.security_center.insights import ContextGetResponse

Zero Trust - Device Deployment Groups

New sub-resource client.zero_trust.devices.deployment_groups:

  • create(*, account_id, **params) -> DeploymentGroup
  • list(*, account_id, **params) -> SyncV4PagePaginationArray[DeploymentGroup]
  • delete(group_id, *, account_id) -> DeploymentGroupDeleteResponse
  • edit(group_id, *, account_id, **params) -> DeploymentGroup
  • get(group_id, *, account_id) -> DeploymentGroup

New types:

from cloudflare.types.zero_trust.devices import DeploymentGroup, DeploymentGroupDeleteResponse