Skip to content

Commit

Permalink
feat(api): api update (#2375)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Jan 29, 2025
1 parent d5da929 commit d2e4f52
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1493
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-bac30cf3609d26642f1dadb7fdadadeb8c854cb52f64dd6be1cc82fa45ffc465.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-443edbd0e6675b5d9ccef1192c2f36ecd69cbe5d896c00e15d172a2ab8eb5702.yml
2 changes: 2 additions & 0 deletions src/cloudflare/types/zero_trust/access/service_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class ServiceToken(BaseModel):

expires_at: Optional[datetime] = None

last_seen_at: Optional[datetime] = None

name: Optional[str] = None
"""The name of the service token."""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class DOHGetResponse(BaseModel):

expires_at: Optional[datetime] = None

last_seen_at: Optional[datetime] = None

name: Optional[str] = None
"""The name of the service token."""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class DOHUpdateResponse(BaseModel):

expires_at: Optional[datetime] = None

last_seen_at: Optional[datetime] = None

name: Optional[str] = None
"""The name of the service token."""

Expand Down

0 comments on commit d2e4f52

Please sign in to comment.