Skip to content

Commit 65382bf

Browse files
chore(api): update composite API spec
1 parent 67788e6 commit 65382bf

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1821
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-bd400602ec86a0531a55ed9bdb1f38026d0896957579acff145e98028ca364d4.yml
3-
openapi_spec_hash: a7c505da9d64268e4f2b45df56b6d804
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-56259b52241f39439e7f03b5b3ab73bf5ac46665a631e0a4add775482cfe481e.yml
3+
openapi_spec_hash: b1ea6fe371ca9455f65ecae055be880c
44
config_hash: 0ce5789fc4b59ae352e68d00847570c2

src/cloudflare/types/radar/ct/log_get_response.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,21 @@ class CertificateLog(BaseModel):
6767
api: Literal["RFC6962", "STATIC"]
6868
"""The API standard that the certificate log follows."""
6969

70+
avg_throughput: float = FieldInfo(alias="avgThroughput")
71+
"""
72+
The average throughput of the CT log, measured in certificates per hour
73+
(certs/hour).
74+
"""
75+
7076
description: str
7177
"""A brief description of the certificate log."""
7278

7379
end_exclusive: datetime = FieldInfo(alias="endExclusive")
7480
"""The end date and time for when the log will stop accepting certificates."""
7581

82+
last_update: datetime = FieldInfo(alias="lastUpdate")
83+
"""Timestamp of the most recent update to the CT log."""
84+
7685
operator: str
7786
"""The organization responsible for operating the certificate log."""
7887

@@ -98,6 +107,16 @@ class CertificateLog(BaseModel):
98107
state_timestamp: datetime = FieldInfo(alias="stateTimestamp")
99108
"""Timestamp of when the log state was last updated."""
100109

110+
submittable_cert_count: Optional[str] = FieldInfo(alias="submittableCertCount", default=None)
111+
"""
112+
Number of certificates that are eligible for inclusion to this log but have not
113+
been included yet. Based on certificates signed by trusted root CAs within the
114+
log's accepted date range.
115+
"""
116+
117+
submitted_cert_count: Optional[str] = FieldInfo(alias="submittedCertCount", default=None)
118+
"""Number of certificates already included in this CT log."""
119+
101120
url: str
102121
"""The URL for the certificate log."""
103122

0 commit comments

Comments
 (0)