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
112 changes: 112 additions & 0 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5148,6 +5148,118 @@ menu:
- ListAppKeyRegistrations
unstable: []
order: 6
- name: Actions Datastores
url: /api/latest/actions-datastores/
identifier: actions-datastores
generated: true
- name: Bulk write datastore items
url: '#bulk-write-datastore-items'
identifier: actions-datastores-bulk-write-datastore-items
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- BulkWriteDatastoreItems
unstable: []
order: 10
- name: Update datastore item
url: '#update-datastore-item'
identifier: actions-datastores-update-datastore-item
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- UpdateDatastoreItem
unstable: []
order: 9
- name: List datastore items
url: '#list-datastore-items'
identifier: actions-datastores-list-datastore-items
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- ListDatastoreItems
unstable: []
order: 7
- name: Delete datastore item
url: '#delete-datastore-item'
identifier: actions-datastores-delete-datastore-item
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- DeleteDatastoreItem
unstable: []
order: 8
- name: Update datastore
url: '#update-datastore'
identifier: actions-datastores-update-datastore
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- UpdateDatastore
unstable: []
order: 5
- name: Get datastore
url: '#get-datastore'
identifier: actions-datastores-get-datastore
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- GetDatastore
unstable: []
order: 4
- name: Delete datastore
url: '#delete-datastore'
identifier: actions-datastores-delete-datastore
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- DeleteDatastore
unstable: []
order: 6
- name: Create datastore
url: '#create-datastore'
identifier: actions-datastores-create-datastore
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- CreateDatastore
unstable: []
order: 2
- name: List datastores
url: '#list-datastores'
identifier: actions-datastores-list-datastores
parent: actions-datastores
generated: true
params:
versions:
- v2
operationids:
- ListDatastores
unstable: []
order: 1
- name: Agentless Scanning
url: /api/latest/agentless-scanning/
identifier: agentless-scanning
Expand Down
3 changes: 3 additions & 0 deletions content/en/api/latest/actions-datastores/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: Actions Datastores
---
4 changes: 4 additions & 0 deletions content/en/api/v2/actions-datastores/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Actions Datastores
headless: true
---
639 changes: 639 additions & 0 deletions content/en/api/v2/actions-datastores/examples.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"data": {
"attributes": {
"values": [
{
"id": "cust_3141",
"name": "Johnathan"
},
{
"id": "cust_3142",
"name": "Mary"
}
]
},
"type": "items"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"data": {
"attributes": {
"name": "datastore-name",
"primary_column_name": "primaryKey"
},
"type": "datastores"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"data": {
"attributes": {
"item_key": "test-key"
},
"type": "items"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"data": {
"attributes": {
"name": "updated name"
},
"type": "datastores",
"id": "string"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"data": {
"attributes": {
"item_changes": {},
"item_key": "test-key"
},
"type": "items"
}
}
35 changes: 35 additions & 0 deletions data/api/v2/CodeExamples.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,41 @@
"description": "Update an existing Action Connection returns \"Successfully updated Action Connection\" response"
}
],
"BulkWriteDatastoreItems": [
{
"group": "actions_datastores",
"suffix": "",
"description": "Bulk write datastore items returns \"OK\" response"
}
],
"CreateDatastore": [
{
"group": "actions_datastores",
"suffix": "",
"description": "Create datastore returns \"OK\" response"
}
],
"DeleteDatastoreItem": [
{
"group": "actions_datastores",
"suffix": "",
"description": "Delete datastore item returns \"OK\" response"
}
],
"UpdateDatastoreItem": [
{
"group": "actions_datastores",
"suffix": "",
"description": "Update datastore item returns \"OK\" response"
}
],
"UpdateDatastore": [
{
"group": "actions_datastores",
"suffix": "",
"description": "Update datastore returns \"OK\" response"
}
],
"UpdateAwsScanOptions": [
{
"group": "agentless_scanning",
Expand Down
Loading
Loading