Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
5f821f3
Enable `useSpaceAwareness` feature flag for Fleet and Security Solution
paul-tavares Jul 14, 2025
8605ca1
[CI] Auto-commit changed files from 'node scripts/jest_integration -u…
kibanamachine Jul 14, 2025
4e31be5
Merge remote-tracking branch 'upstream/main' into task/olm-12866-enab…
paul-tavares Jul 14, 2025
f8a79ba
Merge remote-tracking branch 'origin/task/olm-12866-enable-spaces-in-…
paul-tavares Jul 14, 2025
51039c3
Fix crowdstrike test
paul-tavares Jul 14, 2025
fa301ef
Merge branch 'main' into task/olm-12866-enable-spaces-in-main
paul-tavares Jul 14, 2025
e73625e
Merge remote-tracking branch 'upstream/main' into task/olm-12866-enab…
paul-tavares Jul 15, 2025
f431bb4
Merge remote-tracking branch 'upstream/main' into task/olm-12866-enab…
paul-tavares Jul 15, 2025
c45a8ec
un-skip tests
paul-tavares Jul 15, 2025
15fe29b
Fix fleet agents status FTR test
MichelLosier Jul 15, 2025
ea7c909
Merge branch 'main' into task/olm-12866-enable-spaces-in-main
paul-tavares Jul 15, 2025
bcc5c3e
Add availability info for fleet space settings routes
MichelLosier Jul 15, 2025
723c138
Fix fleet agent status FTR tests
MichelLosier Jul 15, 2025
a83addb
[CI] Auto-commit changed files from 'node scripts/capture_oas_snapsho…
kibanamachine Jul 15, 2025
6436169
[CI] Auto-commit changed files from 'make api-docs'
kibanamachine Jul 15, 2025
9fff631
Merge remote-tracking branch 'upstream/main' into task/olm-12866-enab…
paul-tavares Jul 16, 2025
659a11a
Merge branch 'main' into task/olm-12866-enable-spaces-in-main
paul-tavares Jul 16, 2025
f5674b9
Merge branch 'main' into task/olm-12866-enable-spaces-in-main
paul-tavares Jul 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 116 additions & 0 deletions oas_docs/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -42392,6 +42392,122 @@
]
}
},
"/api/fleet/space_settings": {
"get": {
"operationId": "get-fleet-space-settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"item": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
},
"managed_by": {
"type": "string"
}
},
"required": [
"allowed_namespace_prefixes"
],
"type": "object"
}
},
"required": [
"item"
],
"type": "object"
}
}
}
}
},
"summary": "Get space settings",
"tags": [],
"x-state": "Generally available; added in 9.1.0"
},
"put": {
"description": "[Required authorization] Route required privileges: fleet-settings-all.",
"operationId": "put-fleet-space-settings",
"parameters": [
{
"description": "A required header to protect against CSRF attacks",
"in": "header",
"name": "kbn-xsrf",
"required": true,
"schema": {
"example": "true",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"item": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
},
"managed_by": {
"type": "string"
}
},
"required": [
"allowed_namespace_prefixes"
],
"type": "object"
}
},
"required": [
"item"
],
"type": "object"
}
}
}
}
},
"summary": "Create space settings",
"tags": [],
"x-state": "Generally available; added in 9.1.0"
}
},
"/api/fleet/uninstall_tokens": {
"get": {
"description": "List the metadata for the latest uninstall tokens per agent policy.<br/><br/>[Required authorization] Route required privileges: fleet-agents-all.",
Expand Down
116 changes: 116 additions & 0 deletions oas_docs/bundle.serverless.json
Original file line number Diff line number Diff line change
Expand Up @@ -42392,6 +42392,122 @@
]
}
},
"/api/fleet/space_settings": {
"get": {
"operationId": "get-fleet-space-settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"item": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
},
"managed_by": {
"type": "string"
}
},
"required": [
"allowed_namespace_prefixes"
],
"type": "object"
}
},
"required": [
"item"
],
"type": "object"
}
}
}
}
},
"summary": "Get space settings",
"tags": [],
"x-state": "Generally available"
},
"put": {
"description": "[Required authorization] Route required privileges: fleet-settings-all.",
"operationId": "put-fleet-space-settings",
"parameters": [
{
"description": "A required header to protect against CSRF attacks",
"in": "header",
"name": "kbn-xsrf",
"required": true,
"schema": {
"example": "true",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": false,
"properties": {
"item": {
"additionalProperties": false,
"properties": {
"allowed_namespace_prefixes": {
"items": {
"type": "string"
},
"type": "array"
},
"managed_by": {
"type": "string"
}
},
"required": [
"allowed_namespace_prefixes"
],
"type": "object"
}
},
"required": [
"item"
],
"type": "object"
}
}
}
}
},
"summary": "Create space settings",
"tags": [],
"x-state": "Generally available"
}
},
"/api/fleet/uninstall_tokens": {
"get": {
"description": "List the metadata for the latest uninstall tokens per agent policy.<br/><br/>[Required authorization] Route required privileges: fleet-agents-all.",
Expand Down
76 changes: 76 additions & 0 deletions oas_docs/output/kibana.serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37788,6 +37788,82 @@ paths:
summary: Initiate Fleet setup
tags:
- Fleet internals
/api/fleet/space_settings:
get:
operationId: get-fleet-space-settings
parameters: []
responses:
'200':
content:
application/json:
schema:
additionalProperties: false
type: object
properties:
item:
additionalProperties: false
type: object
properties:
allowed_namespace_prefixes:
items:
type: string
type: array
managed_by:
type: string
required:
- allowed_namespace_prefixes
required:
- item
summary: Get space settings
tags: []
x-state: Generally available
put:
description: '[Required authorization] Route required privileges: fleet-settings-all.'
operationId: put-fleet-space-settings
parameters:
- description: A required header to protect against CSRF attacks
in: header
name: kbn-xsrf
required: true
schema:
example: 'true'
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: false
type: object
properties:
allowed_namespace_prefixes:
items:
type: string
type: array
responses:
'200':
content:
application/json:
schema:
additionalProperties: false
type: object
properties:
item:
additionalProperties: false
type: object
properties:
allowed_namespace_prefixes:
items:
type: string
type: array
managed_by:
type: string
required:
- allowed_namespace_prefixes
required:
- item
summary: Create space settings
tags: []
x-state: Generally available
/api/fleet/uninstall_tokens:
get:
description: 'List the metadata for the latest uninstall tokens per agent policy.<br/><br/>[Required authorization] Route required privileges: fleet-agents-all.'
Expand Down
Loading
Loading