Skip to content

Commit b1f7ea0

Browse files
sjer-akamaiCopilot
andauthored
Update linode_api4/objects/monitor.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent dd0df03 commit b1f7ea0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

linode_api4/objects/monitor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ class LogsDestinationDetails(JSONObject):
544544
- access_key_id: str - The unique identifier assigned to the Object Storage key required for authentication to the bucket.
545545
- bucket_name: str - The name of the Object Storage bucket.
546546
- host: str - The hostname where the Object Storage bucket can be accessed.
547-
- path: str - The specific path in an Object Storage bucket where audit logs files are uploaded.
547+
- path: Optional[str] - The specific path in an Object Storage bucket where audit logs files are uploaded. May be absent or None in API responses.
548548
"""
549549

550550
access_key_id: str = ""
551551
access_key_secret: Optional[str] = None
552552
bucket_name: str = ""
553553
host: str = ""
554-
path: str = ""
554+
path: Optional[str] = None
555555

556556

557557
class LogsDestinationHistory(Base):

0 commit comments

Comments
 (0)