From 265706027cc099c9ef028b145dfcb5526874d3cf Mon Sep 17 00:00:00 2001 From: Rachael Shaw Date: Mon, 15 Jun 2026 17:54:27 -0500 Subject: [PATCH] Fix policy `labels_include_any` documentation (#47643) Label-scoping policies is a Fleet Premium feature according to the [original spec](https://github.com/fleetdm/fleet/issues/24097) and [docs](https://github.com/fleetdm/fleet/pull/27196/changes). I accidentally got rid of the "Available in Fleet Premium" note when I did a recent pass through this file trying to make these descriptions consistent. --- docs/REST API/rest-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index efd5520272..3c968b7119 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -8800,7 +8800,7 @@ _Available in Fleet Premium_ | resolution | string | body | The resolution steps for the policy. | | platform | string | body | Comma-separated target platforms, currently supported values are "windows", "linux", "darwin". The default, an empty string means target all platforms. | | critical | boolean | body | _Available in Fleet Premium_. Mark policy as critical/high impact. | -| labels_include_any | array | form | Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **any of these** labels. | +| labels_include_any | array | form | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **any of these** labels. | | labels_include_all | array | body | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **all of these** labels. | | labels_exclude_any | array | form | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **none of these** labels. | @@ -9030,7 +9030,7 @@ _Available in Fleet Premium_ | resolution | string | body | The resolution steps for the policy. | | platform | string | body | Comma-separated target platforms, currently supported values are "windows", "linux", "darwin". The default, an empty string means target all platforms. | | critical | boolean | body | _Available in Fleet Premium_. Mark policy as critical/high impact. | -| labels_include_any | array | form | Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **any of these** labels. | +| labels_include_any | array | form | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **any of these** labels. | | labels_include_all | array | body | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **all of these** labels. | | labels_exclude_any | array | form | _Available in Fleet Premium_. Labels, specified by label name, to target with this policy. If specified, the policy will run on hosts that match **none of these** labels. |