Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "runzero-sdk"
version = "0.8.6"
version = "0.8.7"
description = "The runZero platform sdk"
license = "BSD-2-Clause"
authors = ["runZero <support@runzero.com>"]
Expand Down
12 changes: 12 additions & 0 deletions runzero/types/_data_models_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,3 +1097,15 @@ class Config:
"""
Flat map of arbitrary string key/value pairs representing custom attribute data not described in properties above. Note the maximum number of keys and length of values. Additionally, property names may only be 256 characters long.
"""
trust_os: Optional[bool] = Field(False, alias="trustOS", example=False)
"""
If true, the provided OS value will be used even if it cannot be normalized using runZero's fingerprint engine.
"""
trust_os_version: Optional[bool] = Field(False, alias="trustOSVersion", example=False)
"""
If true, the provided OS version value will be used even if it cannot be normalized using runZero's fingerprint engine.
"""
trust_device_type: Optional[bool] = Field(False, alias="trustDeviceType", example=False)
"""
If true, the provided device type value will be used even if it cannot be normalized using runZero's fingerprint engine.
"""
Loading