Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66624,9 +66624,6 @@ paths:
x-permission:
operator: OPEN
permissions: []
x-unstable: '**Note: Data Access is in preview. If you have any feedback,

contact [Datadog support](https://docs.datadoghq.com/help/).**'
put:
description: Edits the dataset associated with the ID.
operationId: UpdateDataset
Expand Down
1 change: 0 additions & 1 deletion src/datadog/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ impl Default for Configuration {
("v2.create_dataset".to_owned(), false),
("v2.delete_dataset".to_owned(), false),
("v2.get_all_datasets".to_owned(), false),
("v2.get_dataset".to_owned(), false),
("v2.update_dataset".to_owned(), false),
("v2.cancel_data_deletion_request".to_owned(), false),
("v2.create_data_deletion_request".to_owned(), false),
Expand Down
8 changes: 0 additions & 8 deletions src/datadogV2/api/api_datasets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -516,14 +516,6 @@ impl DatasetsAPI {
> {
let local_configuration = &self.config;
let operation_id = "v2.get_dataset";
if local_configuration.is_unstable_operation_enabled(operation_id) {
warn!("Using unstable operation {operation_id}");
} else {
let local_error = datadog::UnstableOperationDisabledError {
msg: "Operation 'v2.get_dataset' is not enabled".to_string(),
};
return Err(datadog::Error::UnstableOperationDisabledError(local_error));
}

let local_client = &self.client;

Expand Down