Skip to content

Commit 46f143b

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 392b2d9a of spec repo
1 parent 4970f73 commit 46f143b

9 files changed

+154
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-08-08 12:08:31.725333",
8-
"spec_repo_commit": "d02c8a34"
7+
"regenerated": "2025-08-11 22:52:07.294589",
8+
"spec_repo_commit": "392b2d9a"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-08-08 12:08:41.667488",
13-
"spec_repo_commit": "d02c8a34"
12+
"regenerated": "2025-08-11 22:52:17.494767",
13+
"spec_repo_commit": "392b2d9a"
1414
}
1515
}
1616
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"values": [
5+
{
6+
"28173b88-1a0e-001e-28c0-7664b6410518": "key1",
7+
"value": {
8+
"data": "example data 1",
9+
"key": "value"
10+
}
11+
},
12+
{
13+
"28173b88-1a0e-001e-28c0-7664b6410518": "key2",
14+
"value": {
15+
"data": "example data 2",
16+
"key": "value"
17+
}
18+
}
19+
]
20+
},
21+
"type": "items"
22+
}
23+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"name": "datastore-name",
5+
"primary_column_name": "primaryKey"
6+
},
7+
"type": "datastores"
8+
}
9+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"name": "datastore-name",
5+
"primary_column_name": "primaryKey",
6+
"values": [
7+
{
8+
"primaryKey": "key1",
9+
"value": {
10+
"data": "example data 1",
11+
"key": "value"
12+
}
13+
},
14+
{
15+
"primaryKey": "key2",
16+
"value": {
17+
"data": "example data 2",
18+
"key": "value"
19+
}
20+
}
21+
]
22+
},
23+
"type": "datastores"
24+
}
25+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"id": "c213a364-a776-f3da-0eeb-2b8ae9b34704",
5+
"item_key": "test-key"
6+
},
7+
"type": "items",
8+
"id": "string"
9+
}
10+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"value": {
5+
"28173b88-1a0e-001e-28c0-7664b6410518": "new-item-key",
6+
"data": "example data",
7+
"key": "value"
8+
}
9+
},
10+
"type": "items",
11+
"id": "e7e64418-b60c-4789-9612-895ac8423207"
12+
}
13+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"name": "updated name"
5+
},
6+
"type": "datastores",
7+
"id": "string"
8+
}
9+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"item_changes": {
5+
"new_data_key": "new_data_value"
6+
},
7+
"item_key": "test-key"
8+
},
9+
"type": "items",
10+
"id": "c213a364-a776-f3da-0eeb-2b8ae9b34704"
11+
}
12+
}

data/api/v2/CodeExamples.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,55 @@
6363
"description": "Update an existing Action Connection returns \"Successfully updated Action Connection\" response"
6464
}
6565
],
66+
"BulkPutDatastoreItems": [
67+
{
68+
"group": "actions_datastores",
69+
"suffix": "",
70+
"description": "Bulk put datastore items returns \"OK\" response"
71+
}
72+
],
73+
"CreateDatastoreFromImport": [
74+
{
75+
"group": "actions_datastores",
76+
"suffix": "",
77+
"description": "Create datastore from import returns \"OK\" response"
78+
}
79+
],
80+
"CreateDatastore": [
81+
{
82+
"group": "actions_datastores",
83+
"suffix": "",
84+
"description": "Create datastore returns \"OK\" response"
85+
}
86+
],
87+
"DeleteDatastoreItem": [
88+
{
89+
"group": "actions_datastores",
90+
"suffix": "",
91+
"description": "Delete datastore item returns \"OK\" response"
92+
}
93+
],
94+
"PutDatastoreItem": [
95+
{
96+
"group": "actions_datastores",
97+
"suffix": "",
98+
"description": "Put datastore item returns \"OK\" response"
99+
}
100+
],
101+
"UpdateDatastoreItem": [
102+
{
103+
"group": "actions_datastores",
104+
"suffix": "",
105+
"description": "Update datastore item returns \"OK\" response"
106+
}
107+
],
108+
"UpdateDatastore": [
109+
{
110+
"group": "actions_datastores",
111+
"suffix": "",
112+
"description": "Update datastore returns \"OK\" response"
113+
}
114+
],
66115
"UpdateAwsScanOptions": [
67116
{
68117
"group": "agentless_scanning",

0 commit comments

Comments
 (0)