Skip to content

Commit 136f446

Browse files
[9.1][Fleet] remove sync integrations APIs in serverless (elastic#233646)
## Summary Backport elastic#233482 to 9.1 --------- Co-authored-by: kibanamachine <[email protected]>
1 parent 5c51c89 commit 136f446

File tree

5 files changed

+30
-22
lines changed

5 files changed

+30
-22
lines changed

oas_docs/bundle.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41657,10 +41657,11 @@
4165741657
}
4165841658
}
4165941659
},
41660-
"summary": "Get CCR Remote synced integrations status",
41660+
"summary": "Get remote synced integrations status",
4166141661
"tags": [
41662-
"CCR Remote synced integrations"
41663-
]
41662+
"Fleet remote synced integrations"
41663+
],
41664+
"x-state": "Generally available; added in 9.1.0"
4166441665
}
4166541666
},
4166641667
"/api/fleet/remote_synced_integrations/{outputId}/remote_status": {
@@ -41852,10 +41853,11 @@
4185241853
}
4185341854
}
4185441855
},
41855-
"summary": "Get CCR Remote synced integrations status by outputId",
41856+
"summary": "Get remote synced integrations status by outputId",
4185641857
"tags": [
41857-
"CCR Remote synced integrations"
41858-
]
41858+
"Fleet remote synced integrations"
41859+
],
41860+
"x-state": "Generally available; added in 9.1.0"
4185941861
}
4186041862
},
4186141863
"/api/fleet/service_tokens": {
@@ -59069,9 +59071,6 @@
5906959071
{
5907059072
"name": "alerting"
5907159073
},
59072-
{
59073-
"name": "CCR Remote synced integrations"
59074-
},
5907559074
{
5907659075
"name": "connectors"
5907759076
},
@@ -59111,6 +59110,9 @@
5911159110
{
5911259111
"name": "Fleet proxies"
5911359112
},
59113+
{
59114+
"name": "Fleet remote synced integrations"
59115+
},
5911459116
{
5911559117
"name": "Fleet Server hosts"
5911659118
},

oas_docs/bundle.serverless.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58660,9 +58660,6 @@
5866058660
{
5866158661
"name": "alerting"
5866258662
},
58663-
{
58664-
"name": "CCR Remote synced integrations"
58665-
},
5866658663
{
5866758664
"name": "connectors"
5866858665
},

oas_docs/output/kibana.serverless.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ tags:
6666
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.
6767
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.
6868
name: APM sourcemaps
69-
- name: CCR Remote synced integrations
7069
- name: connectors
7170
description: |
7271
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.

oas_docs/output/kibana.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ tags:
8080
description: Cases documentation
8181
url: https://www.elastic.co/docs/explore-analyze/alerts-cases/cases
8282
x-displayName: Cases
83-
- name: CCR Remote synced integrations
8483
- name: connectors
8584
description: |
8685
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.
@@ -103,6 +102,7 @@ tags:
103102
- name: Fleet outputs
104103
- name: Fleet package policies
105104
- name: Fleet proxies
105+
- name: Fleet remote synced integrations
106106
- name: Fleet Server hosts
107107
- name: Fleet service tokens
108108
- name: Fleet uninstall tokens
@@ -39571,9 +39571,10 @@ paths:
3957139571
required:
3957239572
- message
3957339573
- attributes
39574-
summary: Get CCR Remote synced integrations status by outputId
39574+
summary: Get remote synced integrations status by outputId
3957539575
tags:
39576-
- CCR Remote synced integrations
39576+
- Fleet remote synced integrations
39577+
x-state: Generally available; added in 9.1.0
3957739578
/api/fleet/remote_synced_integrations/status:
3957839579
get:
3957939580
description: '[Required authorization] Route required privileges: fleet-settings-read AND integrations-read.'
@@ -39698,9 +39699,10 @@ paths:
3969839699
required:
3969939700
- message
3970039701
- attributes
39701-
summary: Get CCR Remote synced integrations status
39702+
summary: Get remote synced integrations status
3970239703
tags:
39703-
- CCR Remote synced integrations
39704+
- Fleet remote synced integrations
39705+
x-state: Generally available; added in 9.1.0
3970439706
/api/fleet/service_tokens:
3970539707
post:
3970639708
description: '[Required authorization] Route required privileges: fleet-agents-all.'

x-pack/platform/plugins/shared/fleet/server/routes/remote_synced_integrations/index.ts

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ export const registerRoutes = (router: FleetAuthzRouter) => {
3232
],
3333
},
3434
},
35-
summary: `Get CCR Remote synced integrations status`,
35+
summary: `Get remote synced integrations status`,
3636
options: {
37-
tags: ['oas-tag:CCR Remote synced integrations'],
37+
tags: ['oas-tag:Fleet remote synced integrations'],
38+
availability: {
39+
since: '9.1.0',
40+
stability: 'stable',
41+
},
3842
},
3943
})
4044
.addVersion(
@@ -66,9 +70,13 @@ export const registerRoutes = (router: FleetAuthzRouter) => {
6670
],
6771
},
6872
},
69-
summary: `Get CCR Remote synced integrations status by outputId`,
73+
summary: `Get remote synced integrations status by outputId`,
7074
options: {
71-
tags: ['oas-tag:CCR Remote synced integrations'],
75+
tags: ['oas-tag:Fleet remote synced integrations'],
76+
availability: {
77+
since: '9.1.0',
78+
stability: 'stable',
79+
},
7280
},
7381
})
7482
.addVersion(

0 commit comments

Comments
 (0)