Skip to content

Commit 2355b2c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ef6cfbc5 of spec repo
1 parent 9f7f479 commit 2355b2c

14 files changed

+4738
-3552
lines changed

Diff for: .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-15 18:03:10.176525",
8-
"spec_repo_commit": "e54847a1"
7+
"regenerated": "2025-01-15 21:52:58.638345",
8+
"spec_repo_commit": "ef6cfbc5"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-15 18:03:10.191590",
13-
"spec_repo_commit": "e54847a1"
12+
"regenerated": "2025-01-15 21:52:58.653358",
13+
"spec_repo_commit": "ef6cfbc5"
1414
}
1515
}
1616
}

Diff for: .generator/schemas/v2/openapi.yaml

+165
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.
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 mut configuration = datadog::Configuration::new();
20+
configuration.set_unstable_operation_enabled("v2.CreateCustomFramework", true);
21+
let api = SecurityMonitoringAPI::with_config(configuration);
22+
let resp = api.create_custom_framework(body).await;
23+
if let Ok(value) = resp {
24+
println!("{:#?}", value);
25+
} else {
26+
println!("{:#?}", resp.unwrap_err());
27+
}
28+
}
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 mut configuration = datadog::Configuration::new();
20+
configuration.set_unstable_operation_enabled("v2.UpdateCustomFramework", true);
21+
let api = SecurityMonitoringAPI::with_config(configuration);
22+
let resp = api
23+
.update_custom_framework("handle".to_string(), "version".to_string(), body)
24+
.await;
25+
if let Ok(value) = resp {
26+
println!("{:#?}", value);
27+
} else {
28+
println!("{:#?}", resp.unwrap_err());
29+
}
30+
}

Diff for: src/datadog/configuration.rs

+13-11
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,19 @@ 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.create_custom_framework".to_owned(), false),
148+
("v2.delete_historical_job".to_owned(), false),
149+
("v2.get_finding".to_owned(), false),
150+
("v2.get_historical_job".to_owned(), false),
151+
("v2.list_findings".to_owned(), false),
152+
("v2.list_historical_jobs".to_owned(), false),
153+
("v2.list_vulnerabilities".to_owned(), false),
154+
("v2.list_vulnerable_assets".to_owned(), false),
155+
("v2.mute_findings".to_owned(), false),
156+
("v2.run_historical_job".to_owned(), false),
157+
("v2.update_custom_framework".to_owned(), false),
145158
("v2.get_active_billing_dimensions".to_owned(), false),
146159
("v2.get_billing_dimension_mapping".to_owned(), false),
147160
("v2.get_monthly_cost_attribution".to_owned(), false),
@@ -181,17 +194,6 @@ impl Default for Configuration {
181194
("v2.list_aws_namespaces".to_owned(), false),
182195
("v2.update_aws_account".to_owned(), false),
183196
("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),
195197
("v2.create_scorecard_outcomes_batch".to_owned(), false),
196198
("v2.create_scorecard_rule".to_owned(), false),
197199
("v2.delete_scorecard_rule".to_owned(), false),

0 commit comments

Comments
 (0)