Skip to content

Commit c5e707e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 89d2bdc8 of spec repo
1 parent bece5cf commit c5e707e

14 files changed

+4708
-3552
lines changed

.apigentools-info

+4-4
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-14 15:59:11.672589",
8-
"spec_repo_commit": "0457044b"
7+
"regenerated": "2025-01-14 20:10:49.388106",
8+
"spec_repo_commit": "89d2bdc8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-14 15:59:11.688991",
13-
"spec_repo_commit": "0457044b"
12+
"regenerated": "2025-01-14 20:10:49.404083",
13+
"spec_repo_commit": "89d2bdc8"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+159
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,77 @@ 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+
/api/v2/cloud_security_management/custom_frameworks/{handle}/{version}:
33154+
put:
33155+
description: Update a custom framework.
33156+
operationId: UpdateCustomFramework
33157+
parameters:
33158+
- $ref: '#/components/parameters/FrameworkHandle'
33159+
- $ref: '#/components/parameters/FrameworkVersion'
33160+
requestBody:
33161+
content:
33162+
application/json:
33163+
schema:
33164+
$ref: '#/components/schemas/UpdateCustomFrameworkRequest'
33165+
required: true
33166+
responses:
33167+
'200':
33168+
description: OK
33169+
'400':
33170+
$ref: '#/components/responses/BadRequestResponse'
33171+
'429':
33172+
$ref: '#/components/responses/TooManyRequestsResponse'
33173+
'500':
33174+
$ref: '#/components/responses/BadRequestResponse'
33175+
security:
33176+
- apiKeyAuth: []
33177+
appKeyAuth: []
33178+
- AuthZ:
33179+
- security_monitoring_rules_read
33180+
- security_monitoring_rules_write
33181+
summary: Update a custom framework
33182+
tags:
33183+
- Security Monitoring
33184+
x-codegen-request-body-name: body
33185+
x-permission:
33186+
operator: AND
33187+
permissions:
33188+
- security_monitoring_rules_read
33189+
- security_monitoring_rules_write
3303133190
/api/v2/container_images:
3303233191
get:
3303333192
description: Get all Container Images for your organization.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Create a custom framework returns "OK" response
2+
use datadog_api_client::datadog;
3+
use datadog_api_client::datadogV2::api_security_monitoring::SecurityMonitoringAPI;
4+
use datadog_api_client::datadogV2::model::CreateCustomFrameworkRequest;
5+
use datadog_api_client::datadogV2::model::FrameworkControl;
6+
use datadog_api_client::datadogV2::model::FrameworkRequirement;
7+
8+
#[tokio::main]
9+
async fn main() {
10+
let body = CreateCustomFrameworkRequest::new(
11+
"".to_string(),
12+
"".to_string(),
13+
vec![FrameworkRequirement::new(
14+
vec![FrameworkControl::new("".to_string(), vec!["".to_string()])],
15+
"".to_string(),
16+
)],
17+
"".to_string(),
18+
);
19+
let configuration = datadog::Configuration::new();
20+
let api = SecurityMonitoringAPI::with_config(configuration);
21+
let resp = api.create_custom_framework(body).await;
22+
if let Ok(value) = resp {
23+
println!("{:#?}", value);
24+
} else {
25+
println!("{:#?}", resp.unwrap_err());
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Update a custom framework returns "OK" response
2+
use datadog_api_client::datadog;
3+
use datadog_api_client::datadogV2::api_security_monitoring::SecurityMonitoringAPI;
4+
use datadog_api_client::datadogV2::model::FrameworkControl;
5+
use datadog_api_client::datadogV2::model::FrameworkRequirement;
6+
use datadog_api_client::datadogV2::model::UpdateCustomFrameworkRequest;
7+
8+
#[tokio::main]
9+
async fn main() {
10+
let body = UpdateCustomFrameworkRequest::new(
11+
"".to_string(),
12+
"".to_string(),
13+
vec![FrameworkRequirement::new(
14+
vec![FrameworkControl::new("".to_string(), vec!["".to_string()])],
15+
"".to_string(),
16+
)],
17+
"".to_string(),
18+
);
19+
let configuration = datadog::Configuration::new();
20+
let api = SecurityMonitoringAPI::with_config(configuration);
21+
let resp = api
22+
.update_custom_framework("handle".to_string(), "version".to_string(), body)
23+
.await;
24+
if let Ok(value) = resp {
25+
println!("{:#?}", value);
26+
} else {
27+
println!("{:#?}", resp.unwrap_err());
28+
}
29+
}

src/datadog/configuration.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,17 @@ impl Default for Configuration {
142142
("v2.get_app".to_owned(), false),
143143
("v2.list_apps".to_owned(), false),
144144
("v2.update_app".to_owned(), false),
145+
("v2.cancel_historical_job".to_owned(), false),
146+
("v2.convert_job_result_to_signal".to_owned(), false),
147+
("v2.delete_historical_job".to_owned(), false),
148+
("v2.get_finding".to_owned(), false),
149+
("v2.get_historical_job".to_owned(), false),
150+
("v2.list_findings".to_owned(), false),
151+
("v2.list_historical_jobs".to_owned(), false),
152+
("v2.list_vulnerabilities".to_owned(), false),
153+
("v2.list_vulnerable_assets".to_owned(), false),
154+
("v2.mute_findings".to_owned(), false),
155+
("v2.run_historical_job".to_owned(), false),
145156
("v2.get_active_billing_dimensions".to_owned(), false),
146157
("v2.get_billing_dimension_mapping".to_owned(), false),
147158
("v2.get_monthly_cost_attribution".to_owned(), false),
@@ -181,17 +192,6 @@ impl Default for Configuration {
181192
("v2.list_aws_namespaces".to_owned(), false),
182193
("v2.update_aws_account".to_owned(), false),
183194
("v2.list_aws_logs_services".to_owned(), false),
184-
("v2.cancel_historical_job".to_owned(), false),
185-
("v2.convert_job_result_to_signal".to_owned(), false),
186-
("v2.delete_historical_job".to_owned(), false),
187-
("v2.get_finding".to_owned(), false),
188-
("v2.get_historical_job".to_owned(), false),
189-
("v2.list_findings".to_owned(), false),
190-
("v2.list_historical_jobs".to_owned(), false),
191-
("v2.list_vulnerabilities".to_owned(), false),
192-
("v2.list_vulnerable_assets".to_owned(), false),
193-
("v2.mute_findings".to_owned(), false),
194-
("v2.run_historical_job".to_owned(), false),
195195
("v2.create_scorecard_outcomes_batch".to_owned(), false),
196196
("v2.create_scorecard_rule".to_owned(), false),
197197
("v2.delete_scorecard_rule".to_owned(), false),

0 commit comments

Comments
 (0)