Skip to content

Commit

Permalink
🧹 update mondoo provider lr descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Jul 31, 2024
1 parent 4d9d740 commit 7795a30
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions providers/mondoo/resources/mondoo.lr
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,38 @@ import "../../network/resources/network.lr"
option provider = "go.mondoo.com/cnquery/v11/providers/mondoo"
option go_package = "go.mondoo.com/cnquery/v11/providers/mondoo/resources"

// Mondoo Client
mondoo.agent @defaults("mrn") {
// Client itendifier

Check failure on line 12 in providers/mondoo/resources/mondoo.lr

View workflow job for this annotation

GitHub Actions / Run spell check

`itendifier` is not a recognized word. (unrecognized-spelling)
mrn string
}

// Mondoo Space
mondoo.space @defaults("name mrn") {
// Space name
name string
// Space identifier
mrn string
// Assets in space
assets() []mondoo.asset
}

// Mondoo Asset
private mondoo.asset @defaults("name platform") {
// Asset name
name string
// Asset identifier
mrn string
// Platform name
platform string
// Asset resources
resources() []mondoo.resource
}

// Resource
private mondoo.resource @defaults("name id") {
// Resource name
name string
// Resource identifier
id string
}

0 comments on commit 7795a30

Please sign in to comment.