Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 11 additions & 9 deletions oas_docs/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -41657,10 +41657,11 @@
}
}
},
"summary": "Get CCR Remote synced integrations status",
"summary": "Get remote synced integrations status",
"tags": [
"CCR Remote synced integrations"
]
"Fleet remote synced integrations"
],
"x-state": "Generally available; added in 9.1.0"
}
},
"/api/fleet/remote_synced_integrations/{outputId}/remote_status": {
Expand Down Expand Up @@ -41852,10 +41853,11 @@
}
}
},
"summary": "Get CCR Remote synced integrations status by outputId",
"summary": "Get remote synced integrations status by outputId",
"tags": [
"CCR Remote synced integrations"
]
"Fleet remote synced integrations"
],
"x-state": "Generally available; added in 9.1.0"
}
},
"/api/fleet/service_tokens": {
Expand Down Expand Up @@ -59069,9 +59071,6 @@
{
"name": "alerting"
},
{
"name": "CCR Remote synced integrations"
},
{
"name": "connectors"
},
Expand Down Expand Up @@ -59111,6 +59110,9 @@
{
"name": "Fleet proxies"
},
{
"name": "Fleet remote synced integrations"
},
{
"name": "Fleet Server hosts"
},
Expand Down
3 changes: 0 additions & 3 deletions oas_docs/bundle.serverless.json
Original file line number Diff line number Diff line change
Expand Up @@ -58660,9 +58660,6 @@
{
"name": "alerting"
},
{
"name": "CCR Remote synced integrations"
},
{
"name": "connectors"
},
Expand Down
1 change: 0 additions & 1 deletion oas_docs/output/kibana.serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ tags:
Configure APM source maps. A source map allows minified files to be mapped back to original source code--allowing you to maintain the speed advantage of minified code, without losing the ability to quickly and easily debug your application.
For best results, uploading source maps should become a part of your deployment procedure, and not something you only do when you see unhelpful errors. That's because uploading source maps after errors happen won't make old errors magically readable--errors must occur again for source mapping to occur.
name: APM sourcemaps
- name: CCR Remote synced integrations
- name: connectors
description: |
Connectors provide a central place to store connection information for services and integrations with Elastic or third party systems. Alerting rules can use connectors to run actions when rule conditions are met.
Expand Down
12 changes: 7 additions & 5 deletions oas_docs/output/kibana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ tags:
description: Cases documentation
url: https://www.elastic.co/docs/explore-analyze/alerts-cases/cases
x-displayName: Cases
- name: CCR Remote synced integrations
- name: connectors
description: |
Connectors provide a central place to store connection information for services and integrations with Elastic or third party systems. Alerting rules can use connectors to run actions when rule conditions are met.
Expand All @@ -103,6 +102,7 @@ tags:
- name: Fleet outputs
- name: Fleet package policies
- name: Fleet proxies
- name: Fleet remote synced integrations
- name: Fleet Server hosts
- name: Fleet service tokens
- name: Fleet uninstall tokens
Expand Down Expand Up @@ -39571,9 +39571,10 @@ paths:
required:
- message
- attributes
summary: Get CCR Remote synced integrations status by outputId
summary: Get remote synced integrations status by outputId
tags:
- CCR Remote synced integrations
- Fleet remote synced integrations
x-state: Generally available; added in 9.1.0
/api/fleet/remote_synced_integrations/status:
get:
description: '[Required authorization] Route required privileges: fleet-settings-read AND integrations-read.'
Expand Down Expand Up @@ -39698,9 +39699,10 @@ paths:
required:
- message
- attributes
summary: Get CCR Remote synced integrations status
summary: Get remote synced integrations status
tags:
- CCR Remote synced integrations
- Fleet remote synced integrations
x-state: Generally available; added in 9.1.0
/api/fleet/service_tokens:
post:
description: '[Required authorization] Route required privileges: fleet-agents-all.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ export const registerRoutes = (router: FleetAuthzRouter) => {
],
},
},
summary: `Get CCR Remote synced integrations status`,
summary: `Get remote synced integrations status`,
options: {
tags: ['oas-tag:CCR Remote synced integrations'],
tags: ['oas-tag:Fleet remote synced integrations'],
availability: {
since: '9.1.0',
stability: 'stable',
},
},
})
.addVersion(
Expand Down Expand Up @@ -66,9 +70,13 @@ export const registerRoutes = (router: FleetAuthzRouter) => {
],
},
},
summary: `Get CCR Remote synced integrations status by outputId`,
summary: `Get remote synced integrations status by outputId`,
options: {
tags: ['oas-tag:CCR Remote synced integrations'],
tags: ['oas-tag:Fleet remote synced integrations'],
availability: {
since: '9.1.0',
stability: 'stable',
},
},
})
.addVersion(
Expand Down
Loading