File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
.generator/src/generator/templates
examples/v2/security-monitoring Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import * as fs from "fs";
6
6
import { client, {{ version }} } from "@datadog/datadog-api-client";
7
7
8
8
const configuration = client.createConfiguration();
9
- {% - for operation in context ._enable_operations %}
9
+ {% - for operation in context ._enable_operations | sort %}
10
10
configuration.unstableOperations["{{ version }}.{{ operation|untitle_case }}"] = true;
11
11
{% - endfor %}
12
12
const apiInstance = new {{ version }}.{{ context.api_instance.name }}Api(configuration);
Original file line number Diff line number Diff line change 5
5
import { client , v2 } from "@datadog/datadog-api-client" ;
6
6
7
7
const configuration = client . createConfiguration ( ) ;
8
- configuration . unstableOperations [ "v2.runHistoricalJob" ] = true ;
9
8
configuration . unstableOperations [ "v2.cancelHistoricalJob" ] = true ;
9
+ configuration . unstableOperations [ "v2.runHistoricalJob" ] = true ;
10
10
const apiInstance = new v2 . SecurityMonitoringApi ( configuration ) ;
11
11
12
12
// there is a valid "historical_job" in the system
You can’t perform that action at this time.
0 commit comments