mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-19 04:45:07 -04:00
[Fleet] Add hidden property to fleet enrollment api keys
This commit is contained in:
parent
afb83b7551
commit
f030365f0c
2 changed files with 4 additions and 1 deletions
|
@ -36,6 +36,9 @@
|
|||
},
|
||||
"namespaces": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@ public class Fleet extends Plugin implements SystemIndexPlugin {
|
|||
private static final List<String> ALLOWED_PRODUCTS = List.of("kibana", "fleet");
|
||||
private static final int FLEET_ACTIONS_MAPPINGS_VERSION = 2;
|
||||
private static final int FLEET_AGENTS_MAPPINGS_VERSION = 2;
|
||||
private static final int FLEET_ENROLLMENT_API_KEYS_MAPPINGS_VERSION = 2;
|
||||
private static final int FLEET_ENROLLMENT_API_KEYS_MAPPINGS_VERSION = 3;
|
||||
private static final int FLEET_SECRETS_MAPPINGS_VERSION = 1;
|
||||
private static final int FLEET_POLICIES_MAPPINGS_VERSION = 2;
|
||||
private static final int FLEET_POLICIES_LEADER_MAPPINGS_VERSION = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue