File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed
Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments