diff --git a/server/kolide/osquery.go b/server/kolide/osquery.go index cc0e2d5630..56ad3d84ea 100644 --- a/server/kolide/osquery.go +++ b/server/kolide/osquery.go @@ -46,6 +46,7 @@ type QueryContent struct { Snapshot *bool `json:"snapshot,omitempty"` Removed *bool `json:"removed,omitempty"` Shard *uint `json:"shard,omitempty"` + Denylist *bool `json:"denylist,omitempty"` } type PermissiveQueryContent struct { diff --git a/server/service/service_osquery.go b/server/service/service_osquery.go index dd7ab0b228..b9f93a7895 100644 --- a/server/service/service_osquery.go +++ b/server/service/service_osquery.go @@ -158,6 +158,7 @@ func (svc service) GetClientConfig(ctx context.Context) (map[string]interface{}, Version: query.Version, Removed: query.Removed, Shard: query.Shard, + Denylist: query.Denylist, } if query.Removed != nil {