go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/explorer/scan/cnquery_explorer_scan.proto (about)

     1  // Copyright (c) Mondoo, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  syntax = "proto3";
     5  
     6  package cnquery.explorer.scan;
     7  option go_package = "go.mondoo.com/cnquery/explorer/scan";
     8  
     9  import "providers-sdk/v1/inventory/inventory.proto";
    10  import "explorer/cnquery_explorer.proto";
    11  
    12  message Job {
    13    cnquery.providers.v1.Inventory inventory = 1;
    14    cnquery.explorer.Bundle bundle = 2;
    15    
    16    bool do_record = 20;
    17    repeated string query_pack_filters = 21;
    18    map<string,string> props = 22;
    19    // annotations that will be applied to all assets in the job
    20    map<string,string> annotations = 23;
    21  }
    22