Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACTP] Fixes in Connection API docs #27596

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-12 18:35:12.089667",
"spec_repo_commit": "6a4cfb82"
"regenerated": "2025-02-12 21:49:24.700850",
"spec_repo_commit": "41fcc78b"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-12 18:35:20.202071",
"spec_repo_commit": "6a4cfb82"
"regenerated": "2025-02-12 21:49:32.942461",
"spec_repo_commit": "41fcc78b"
}
}
}
22 changes: 11 additions & 11 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4667,14 +4667,14 @@ menu:
- ListApmRetentionFilters
unstable: []
order: 1
- name: Action Connection
url: /api/latest/action-connection/
identifier: action-connection
- name: Action Connections
url: /api/latest/action-connections/
identifier: action-connections
generated: true
- name: Update an existing Action Connection
url: '#update-an-existing-action-connection'
identifier: action-connection-update-an-existing-action-connection
parent: action-connection
identifier: action-connections-update-an-existing-action-connection
parent: action-connections
generated: true
params:
versions:
Expand All @@ -4685,8 +4685,8 @@ menu:
order: 3
- name: Get an existing Action Connection
url: '#get-an-existing-action-connection'
identifier: action-connection-get-an-existing-action-connection
parent: action-connection
identifier: action-connections-get-an-existing-action-connection
parent: action-connections
generated: true
params:
versions:
Expand All @@ -4697,8 +4697,8 @@ menu:
order: 1
- name: Delete an existing Action Connection
url: '#delete-an-existing-action-connection'
identifier: action-connection-delete-an-existing-action-connection
parent: action-connection
identifier: action-connections-delete-an-existing-action-connection
parent: action-connections
generated: true
params:
versions:
Expand All @@ -4709,8 +4709,8 @@ menu:
order: 4
- name: Create a new Action Connection
url: '#create-a-new-action-connection'
identifier: action-connection-create-a-new-action-connection
parent: action-connection
identifier: action-connections-create-a-new-action-connection
parent: action-connections
generated: true
params:
versions:
Expand Down
3 changes: 3 additions & 0 deletions content/en/api/latest/action-connections/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: Action Connections
---
4 changes: 4 additions & 0 deletions content/en/api/v2/action-connections/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Action Connections
headless: true
---
400 changes: 400 additions & 0 deletions content/en/api/v2/action-connections/examples.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"data": {
"type": "action_connection",
"attributes": {
"name": "Cassette Connection DELETE_ME",
"integration": {
"type": "AWS",
"credentials": {
"type": "AWSAssumeRole",
"role": "MyRoleUpdated",
"account_id": "123456789123"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"data": {
"type": "action_connection",
"attributes": {
"name": "Cassette Connection",
"integration": {
"type": "AWS",
"credentials": {
"type": "AWSAssumeRole",
"role": "MyRoleUpdated",
"account_id": "123456789123"
}
}
}
}
}
8 changes: 4 additions & 4 deletions data/api/v2/CodeExamples.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@
],
"CreateActionConnection": [
{
"group": "action_connection",
"group": "action_connections",
"suffix": "",
"description": "Create a new Action Connection returns \"Successfully created Action Connection\" response"
"description": "Create a new Action Connection returns \"Created\" response"
}
],
"UpdateActionConnection": [
{
"group": "action_connection",
"group": "action_connections",
"suffix": "",
"description": "Update an existing Action Connection returns \"Successfully updated Action Connection\" response"
"description": "Update an existing Action Connection returns \"OK\" response"
}
],
"CreateApp": [
Expand Down
Loading
Loading