Skip to content

Commit 4a9d810

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b506cfa1 of spec repo
1 parent 884c62f commit 4a9d810

File tree

15 files changed

+1372
-203
lines changed

15 files changed

+1372
-203
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-01-15 18:03:14.352874",
8-
"spec_repo_commit": "e54847a1"
7+
"regenerated": "2025-01-16 16:20:40.099716",
8+
"spec_repo_commit": "b506cfa1"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-15 18:03:14.368560",
13-
"spec_repo_commit": "e54847a1"
12+
"regenerated": "2025-01-16 16:20:40.114811",
13+
"spec_repo_commit": "b506cfa1"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,20 @@ components:
297297
required: false
298298
schema:
299299
$ref: '#/components/schemas/RelationType'
300+
FrameworkHandle:
301+
description: The framework handle
302+
in: path
303+
name: handle
304+
required: true
305+
schema:
306+
type: string
307+
FrameworkVersion:
308+
description: The framework version
309+
in: path
310+
name: version
311+
required: true
312+
schema:
313+
type: string
300314
GCPSTSServiceAccountID:
301315
description: Your GCP STS enabled service account's unique ID.
302316
in: path
@@ -7145,6 +7159,10 @@ components:
71457159
type: string
71467160
x-enum-varnames:
71477161
- APPDEFINITIONS
7162+
CreateCustomFrameworkRequest:
7163+
$ref: '#/components/schemas/FrameworkData'
7164+
description: Create a custom framework.
7165+
type: object
71487166
CreateDataDeletionRequestBody:
71497167
description: Object needed to create a data deletion request.
71507168
properties:
@@ -11936,6 +11954,72 @@ components:
1193611954
order:
1193711955
$ref: '#/components/schemas/QuerySortOrder'
1193811956
type: object
11957+
FrameworkControl:
11958+
description: Framework Control.
11959+
properties:
11960+
name:
11961+
description: Control Name.
11962+
example: ''
11963+
type: string
11964+
rule_ids:
11965+
description: Rule IDs.
11966+
example:
11967+
- ''
11968+
items:
11969+
type: string
11970+
type: array
11971+
required:
11972+
- name
11973+
- rule_ids
11974+
type: object
11975+
FrameworkData:
11976+
description: Framework Data.
11977+
properties:
11978+
description:
11979+
description: Framework Description
11980+
type: string
11981+
handle:
11982+
description: Framework Handle
11983+
example: ''
11984+
type: string
11985+
icon_url:
11986+
description: Framework Icon URL
11987+
type: string
11988+
name:
11989+
description: Framework Name
11990+
example: ''
11991+
type: string
11992+
requirements:
11993+
description: Framework Requirements
11994+
items:
11995+
$ref: '#/components/schemas/FrameworkRequirement'
11996+
type: array
11997+
version:
11998+
description: Framework Version
11999+
example: ''
12000+
type: string
12001+
required:
12002+
- handle
12003+
- version
12004+
- name
12005+
- requirements
12006+
type: object
12007+
FrameworkRequirement:
12008+
description: Framework Requirement.
12009+
properties:
12010+
controls:
12011+
description: Requirement Controls.
12012+
items:
12013+
$ref: '#/components/schemas/FrameworkControl'
12014+
type: array
12015+
name:
12016+
description: Requirement Name.
12017+
example: ''
12018+
type: string
12019+
required:
12020+
- name
12021+
- controls
12022+
type: object
1193912023
FullAPIKey:
1194012024
description: Datadog API key.
1194112025
properties:
@@ -28953,6 +29037,10 @@ components:
2895329037
deployment:
2895429038
$ref: '#/components/schemas/DeploymentRelationship'
2895529039
type: object
29040+
UpdateCustomFrameworkRequest:
29041+
$ref: '#/components/schemas/FrameworkData'
29042+
description: Update a custom framework.
29043+
type: object
2895629044
UpdateOpenAPIResponse:
2895729045
description: Response for `UpdateOpenAPI`.
2895829046
properties:
@@ -33028,6 +33116,83 @@ paths:
3302833116
operator: OR
3302933117
permissions:
3303033118
- ci_visibility_read
33119+
/api/v2/cloud_security_management/custom_frameworks:
33120+
post:
33121+
description: Create a custom framework.
33122+
operationId: CreateCustomFramework
33123+
requestBody:
33124+
content:
33125+
application/json:
33126+
schema:
33127+
$ref: '#/components/schemas/CreateCustomFrameworkRequest'
33128+
required: true
33129+
responses:
33130+
'200':
33131+
description: OK
33132+
'400':
33133+
$ref: '#/components/responses/BadRequestResponse'
33134+
'429':
33135+
$ref: '#/components/responses/TooManyRequestsResponse'
33136+
'500':
33137+
$ref: '#/components/responses/BadRequestResponse'
33138+
security:
33139+
- apiKeyAuth: []
33140+
appKeyAuth: []
33141+
- AuthZ:
33142+
- security_monitoring_rules_read
33143+
- security_monitoring_rules_write
33144+
summary: Create a custom framework
33145+
tags:
33146+
- Security Monitoring
33147+
x-codegen-request-body-name: body
33148+
x-permission:
33149+
operator: AND
33150+
permissions:
33151+
- security_monitoring_rules_read
33152+
- security_monitoring_rules_write
33153+
x-unstable: '**Note**: This endpoint is in beta and may be subject to changes.
33154+
33155+
Please check the documentation regularly for updates.'
33156+
/api/v2/cloud_security_management/custom_frameworks/{handle}/{version}:
33157+
put:
33158+
description: Update a custom framework.
33159+
operationId: UpdateCustomFramework
33160+
parameters:
33161+
- $ref: '#/components/parameters/FrameworkHandle'
33162+
- $ref: '#/components/parameters/FrameworkVersion'
33163+
requestBody:
33164+
content:
33165+
application/json:
33166+
schema:
33167+
$ref: '#/components/schemas/UpdateCustomFrameworkRequest'
33168+
required: true
33169+
responses:
33170+
'200':
33171+
description: OK
33172+
'400':
33173+
$ref: '#/components/responses/BadRequestResponse'
33174+
'429':
33175+
$ref: '#/components/responses/TooManyRequestsResponse'
33176+
'500':
33177+
$ref: '#/components/responses/BadRequestResponse'
33178+
security:
33179+
- apiKeyAuth: []
33180+
appKeyAuth: []
33181+
- AuthZ:
33182+
- security_monitoring_rules_read
33183+
- security_monitoring_rules_write
33184+
summary: Update a custom framework
33185+
tags:
33186+
- Security Monitoring
33187+
x-codegen-request-body-name: body
33188+
x-permission:
33189+
operator: AND
33190+
permissions:
33191+
- security_monitoring_rules_read
33192+
- security_monitoring_rules_write
33193+
x-unstable: '**Note**: This endpoint is in beta and may be subject to changes.
33194+
33195+
Please check the documentation regularly for updates.'
3303133196
/api/v2/container_images:
3303233197
get:
3303333198
description: Get all Container Images for your organization.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Create a custom framework returns "OK" response
2+
3+
require "datadog_api_client"
4+
DatadogAPIClient.configure do |config|
5+
config.unstable_operations["v2.create_custom_framework".to_sym] = true
6+
end
7+
api_instance = DatadogAPIClient::V2::SecurityMonitoringAPI.new
8+
9+
body = DatadogAPIClient::V2::CreateCustomFrameworkRequest.new({
10+
handle: "",
11+
name: "",
12+
requirements: [
13+
DatadogAPIClient::V2::FrameworkRequirement.new({
14+
controls: [
15+
DatadogAPIClient::V2::FrameworkControl.new({
16+
name: "",
17+
rule_ids: [
18+
"",
19+
],
20+
}),
21+
],
22+
name: "",
23+
}),
24+
],
25+
version: "",
26+
})
27+
p api_instance.create_custom_framework(body)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Update a custom framework returns "OK" response
2+
3+
require "datadog_api_client"
4+
DatadogAPIClient.configure do |config|
5+
config.unstable_operations["v2.update_custom_framework".to_sym] = true
6+
end
7+
api_instance = DatadogAPIClient::V2::SecurityMonitoringAPI.new
8+
9+
body = DatadogAPIClient::V2::UpdateCustomFrameworkRequest.new({
10+
handle: "",
11+
name: "",
12+
requirements: [
13+
DatadogAPIClient::V2::FrameworkRequirement.new({
14+
controls: [
15+
DatadogAPIClient::V2::FrameworkControl.new({
16+
name: "",
17+
rule_ids: [
18+
"",
19+
],
20+
}),
21+
],
22+
name: "",
23+
}),
24+
],
25+
version: "",
26+
})
27+
p api_instance.update_custom_framework("handle", "version", body)

0 commit comments

Comments
 (0)