File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed
datadog-api-client-common
datadog-api-client-v2/apis Expand file tree Collapse file tree 3 files changed +0
-9
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 @@ -267,7 +267,6 @@ export function createConfiguration(
267267 "v2.createDataset" : false ,
268268 "v2.deleteDataset" : false ,
269269 "v2.getAllDatasets" : false ,
270- "v2.getDataset" : false ,
271270 "v2.updateDataset" : false ,
272271 "v2.cancelDataDeletionRequest" : false ,
273272 "v2.createDataDeletionRequest" : false ,
Original file line number Diff line number Diff line change @@ -145,11 +145,6 @@ export class DatasetsApiRequestFactory extends BaseAPIRequestFactory {
145145 ) : Promise < RequestContext > {
146146 const _config = _options || this . configuration ;
147147
148- logger . warn ( "Using unstable operation 'getDataset'" ) ;
149- if ( ! _config . unstableOperations [ "v2.getDataset" ] ) {
150- throw new Error ( "Unstable operation 'getDataset' is disabled" ) ;
151- }
152-
153148 // verify required parameter 'datasetId' is not null or undefined
154149 if ( datasetId === null || datasetId === undefined ) {
155150 throw new RequiredError ( "datasetId" , "getDataset" ) ;
You can’t perform that action at this time.
0 commit comments