Skip to content

Commit 1bc5d77

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f433034 of spec repo
1 parent 39f09d7 commit 1bc5d77

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66624,9 +66624,6 @@ paths:
6662466624
x-permission:
6662566625
operator: OPEN
6662666626
permissions: []
66627-
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
66628-
66629-
contact [Datadog support](https://docs.datadoghq.com/help/).**'
6663066627
put:
6663166628
description: Edits the dataset associated with the ID.
6663266629
operationId: UpdateDataset

src/datadog/configuration.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ impl Default for Configuration {
173173
("v2.create_dataset".to_owned(), false),
174174
("v2.delete_dataset".to_owned(), false),
175175
("v2.get_all_datasets".to_owned(), false),
176-
("v2.get_dataset".to_owned(), false),
177176
("v2.update_dataset".to_owned(), false),
178177
("v2.cancel_data_deletion_request".to_owned(), false),
179178
("v2.create_data_deletion_request".to_owned(), false),

src/datadogV2/api/api_datasets.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -516,14 +516,6 @@ impl DatasetsAPI {
516516
> {
517517
let local_configuration = &self.config;
518518
let operation_id = "v2.get_dataset";
519-
if local_configuration.is_unstable_operation_enabled(operation_id) {
520-
warn!("Using unstable operation {operation_id}");
521-
} else {
522-
let local_error = datadog::UnstableOperationDisabledError {
523-
msg: "Operation 'v2.get_dataset' is not enabled".to_string(),
524-
};
525-
return Err(datadog::Error::UnstableOperationDisabledError(local_error));
526-
}
527519

528520
let local_client = &self.client;
529521

0 commit comments

Comments
 (0)