Skip to content

Commit a283653

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f580703 of spec repo
1 parent 44346b8 commit a283653

16 files changed

+1879
-0
lines changed

config/_default/menus/api.en.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3094,6 +3094,66 @@ menu:
30943094
unstable:
30953095
- v2
30963096
order: 28
3097+
- name: Create Jira issues for security findings
3098+
url: '#create-jira-issues-for-security-findings'
3099+
identifier: security-monitoring-create-jira-issues-for-security-findings
3100+
parent: security-monitoring
3101+
generated: true
3102+
params:
3103+
versions:
3104+
- v2
3105+
operationids:
3106+
- CreateJiraIssues
3107+
unstable: []
3108+
order: 7
3109+
- name: Attach security findings to a Jira issue
3110+
url: '#attach-security-findings-to-a-jira-issue'
3111+
identifier: security-monitoring-attach-security-findings-to-a-jira-issue
3112+
parent: security-monitoring
3113+
generated: true
3114+
params:
3115+
versions:
3116+
- v2
3117+
operationids:
3118+
- AttachJiraIssue
3119+
unstable: []
3120+
order: 8
3121+
- name: Attach security findings to a case
3122+
url: '#attach-security-findings-to-a-case'
3123+
identifier: security-monitoring-attach-security-findings-to-a-case
3124+
parent: security-monitoring
3125+
generated: true
3126+
params:
3127+
versions:
3128+
- v2
3129+
operationids:
3130+
- AttachCase
3131+
unstable: []
3132+
order: 5
3133+
- name: Create cases for security findings
3134+
url: '#create-cases-for-security-findings'
3135+
identifier: security-monitoring-create-cases-for-security-findings
3136+
parent: security-monitoring
3137+
generated: true
3138+
params:
3139+
versions:
3140+
- v2
3141+
operationids:
3142+
- CreateCases
3143+
unstable: []
3144+
order: 4
3145+
- name: Detach security findings from their case
3146+
url: '#detach-security-findings-from-their-case'
3147+
identifier: security-monitoring-detach-security-findings-from-their-case
3148+
parent: security-monitoring
3149+
generated: true
3150+
params:
3151+
versions:
3152+
- v2
3153+
operationids:
3154+
- DetachCase
3155+
unstable: []
3156+
order: 6
30973157
- name: Get a finding
30983158
url: '#get-a-finding'
30993159
identifier: security-monitoring-get-a-finding

content/en/api/v2/security-monitoring/examples.json

Lines changed: 619 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"data": {
3+
"id": "7d16945b-baf8-411e-ab2a-20fe43af1ea3",
4+
"relationships": {
5+
"findings": {
6+
"data": [
7+
{
8+
"id": "ZGZhMDI3ZjdjMDM3YjJmNzcxNTlhZGMwMjdmZWNiNTZ-MTVlYTNmYWU3NjNlOTNlYTE2YjM4N2JmZmI4Yjk5N2Y=",
9+
"type": "findings"
10+
},
11+
{
12+
"id": "MmUzMzZkODQ2YTI3NDU0OTk4NDk3NzhkOTY5YjU2Zjh-YWJjZGI1ODI4OTYzNWM3ZmUwZTBlOWRkYTRiMGUyOGQ=",
13+
"type": "findings"
14+
}
15+
]
16+
}
17+
},
18+
"type": "cases"
19+
}
20+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"data": {
3+
"id": "7d16945b-baf8-411e-ab2a-20fe43af1ea3",
4+
"relationships": {
5+
"findings": {
6+
"data": [
7+
{
8+
"id": "ZGZhMDI3ZjdjMDM3YjJmNzcxNTlhZGMwMjdmZWNiNTZ-MTVlYTNmYWU3NjNlOTNlYTE2YjM4N2JmZmI4Yjk5N2Y=",
9+
"type": "findings"
10+
}
11+
]
12+
}
13+
},
14+
"type": "cases"
15+
}
16+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"jira_issue_url": "https://datadoghq-sandbox-538.atlassian.net/browse/CSMSEC-105476"
5+
},
6+
"relationships": {
7+
"findings": {
8+
"data": [
9+
{
10+
"id": "OTQ3NjJkMmYwMTIzMzMxNTc1Y2Q4MTA5NWU0NTBmMDl-ZjE3NjMxZWVkYzBjZGI1NDY2NWY2OGQxZDk4MDY4MmI=",
11+
"type": "findings"
12+
},
13+
{
14+
"id": "MTNjN2ZmYWMzMDIxYmU1ZDFiZDRjNWUwN2I1NzVmY2F-YTA3MzllMTUzNWM3NmEyZjdiNzEzOWM5YmViZTMzOGM=",
15+
"type": "findings"
16+
}
17+
]
18+
},
19+
"project": {
20+
"data": {
21+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
22+
"type": "projects"
23+
}
24+
}
25+
},
26+
"type": "jira_issues"
27+
}
28+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"data": {
3+
"attributes": {
4+
"jira_issue_url": "https://datadoghq-sandbox-538.atlassian.net/browse/CSMSEC-105476"
5+
},
6+
"relationships": {
7+
"findings": {
8+
"data": [
9+
{
10+
"id": "OTQ3NjJkMmYwMTIzMzMxNTc1Y2Q4MTA5NWU0NTBmMDl-ZjE3NjMxZWVkYzBjZGI1NDY2NWY2OGQxZDk4MDY4MmI=",
11+
"type": "findings"
12+
}
13+
]
14+
},
15+
"project": {
16+
"data": {
17+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
18+
"type": "projects"
19+
}
20+
}
21+
},
22+
"type": "jira_issues"
23+
}
24+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"data": [
3+
{
4+
"attributes": {
5+
"title": "A title",
6+
"description": "A description"
7+
},
8+
"relationships": {
9+
"findings": {
10+
"data": [
11+
{
12+
"id": "ZGZhMDI3ZjdjMDM3YjJmNzcxNTlhZGMwMjdmZWNiNTZ-MTVlYTNmYWU3NjNlOTNlYTE2YjM4N2JmZmI4Yjk5N2Y=",
13+
"type": "findings"
14+
}
15+
]
16+
},
17+
"project": {
18+
"data": {
19+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
20+
"type": "projects"
21+
}
22+
}
23+
},
24+
"type": "cases"
25+
},
26+
{
27+
"attributes": {
28+
"title": "A title",
29+
"description": "A description"
30+
},
31+
"relationships": {
32+
"findings": {
33+
"data": [
34+
{
35+
"id": "MzZkNTMxODNmOGZlZmJiYzIyMDg4NzhmM2QyMDExZjB-ZmY5NzUwNDQzYTE0MGIyNDM1MTg4YjkxZDNmMDU4OGU=",
36+
"type": "findings"
37+
}
38+
]
39+
},
40+
"project": {
41+
"data": {
42+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
43+
"type": "projects"
44+
}
45+
}
46+
},
47+
"type": "cases"
48+
}
49+
]
50+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"data": [
3+
{
4+
"attributes": {
5+
"title": "A title",
6+
"description": "A description"
7+
},
8+
"relationships": {
9+
"findings": {
10+
"data": [
11+
{
12+
"id": "ZGZhMDI3ZjdjMDM3YjJmNzcxNTlhZGMwMjdmZWNiNTZ-MTVlYTNmYWU3NjNlOTNlYTE2YjM4N2JmZmI4Yjk5N2Y=",
13+
"type": "findings"
14+
}
15+
]
16+
},
17+
"project": {
18+
"data": {
19+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
20+
"type": "projects"
21+
}
22+
}
23+
},
24+
"type": "cases"
25+
}
26+
]
27+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"data": [
3+
{
4+
"attributes": {
5+
"title": "A title",
6+
"description": "A description"
7+
},
8+
"relationships": {
9+
"findings": {
10+
"data": [
11+
{
12+
"id": "ZGZhMDI3ZjdjMDM3YjJmNzcxNTlhZGMwMjdmZWNiNTZ-MTVlYTNmYWU3NjNlOTNlYTE2YjM4N2JmZmI4Yjk5N2Y=",
13+
"type": "findings"
14+
},
15+
{
16+
"id": "MzZkNTMxODNmOGZlZmJiYzIyMDg4NzhmM2QyMDExZjB-ZmY5NzUwNDQzYTE0MGIyNDM1MTg4YjkxZDNmMDU4OGU=",
17+
"type": "findings"
18+
}
19+
]
20+
},
21+
"project": {
22+
"data": {
23+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f",
24+
"type": "projects"
25+
}
26+
}
27+
},
28+
"type": "cases"
29+
}
30+
]
31+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"data": [
3+
{
4+
"type": "jira_issues",
5+
"attributes": {},
6+
"relationships": {
7+
"case": {
8+
"data": {
9+
"type": "cases",
10+
"id": "53e242c6-a7d6-46ad-9680-b8d14753f716"
11+
}
12+
}
13+
}
14+
},
15+
{
16+
"type": "jira_issues",
17+
"attributes": {},
18+
"relationships": {
19+
"case": {
20+
"data": {
21+
"type": "cases",
22+
"id": "195772b2-1f53-41d2-b81e-48c8e6c21d33"
23+
}
24+
}
25+
}
26+
}
27+
],
28+
"included": [
29+
{
30+
"type": "cases",
31+
"attributes": {
32+
"title": "A title",
33+
"description": "A description"
34+
},
35+
"relationships": {
36+
"project": {
37+
"data": {
38+
"type": "projects",
39+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f"
40+
}
41+
},
42+
"findings": {
43+
"data": [
44+
{
45+
"type": "findings",
46+
"id": "OTQ3NjJkMmYwMTIzMzMxNTc1Y2Q4MTA5NWU0NTBmMDl-ZjE3NjMxZWVkYzBjZGI1NDY2NWY2OGQxZDk4MDY4MmI="
47+
}
48+
]
49+
}
50+
},
51+
"id": "53e242c6-a7d6-46ad-9680-b8d14753f716"
52+
},
53+
{
54+
"type": "cases",
55+
"attributes": {
56+
"title": "A title",
57+
"description": "A description"
58+
},
59+
"relationships": {
60+
"project": {
61+
"data": {
62+
"type": "projects",
63+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f"
64+
}
65+
},
66+
"findings": {
67+
"data": [
68+
{
69+
"type": "findings",
70+
"id": "MTNjN2ZmYWMzMDIxYmU1ZDFiZDRjNWUwN2I1NzVmY2F-YTA3MzllMTUzNWM3NmEyZjdiNzEzOWM5YmViZTMzOGM="
71+
}
72+
]
73+
}
74+
},
75+
"id": "195772b2-1f53-41d2-b81e-48c8e6c21d33"
76+
},
77+
{
78+
"type": "projects",
79+
"id": "959a6f71-bac8-4027-b1d3-2264f569296f"
80+
},
81+
{
82+
"type": "findings",
83+
"id": "OTQ3NjJkMmYwMTIzMzMxNTc1Y2Q4MTA5NWU0NTBmMDl-ZjE3NjMxZWVkYzBjZGI1NDY2NWY2OGQxZDk4MDY4MmI="
84+
},
85+
{
86+
"type": "findings",
87+
"id": "MTNjN2ZmYWMzMDIxYmU1ZDFiZDRjNWUwN2I1NzVmY2F-YTA3MzllMTUzNWM3NmEyZjdiNzEzOWM5YmViZTMzOGM="
88+
}
89+
]
90+
}

0 commit comments

Comments
 (0)