File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
.generator/src/generator/templates
examples/v2/security-monitoring Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ body = {{ body }}
33
33
34
34
configuration = Configuration()
35
35
36
- {% - for operation in context ._enable_operations %}
36
+ {% - for operation in context ._enable_operations | sort %}
37
37
configuration.unstable_operations["{{ operation|safe_snake_case }}"] = True
38
38
{% - endfor %}
39
39
with ApiClient(configuration) as api_client:
Original file line number Diff line number Diff line change 10
10
HISTORICAL_JOB_DATA_ID = environ ["HISTORICAL_JOB_DATA_ID" ]
11
11
12
12
configuration = Configuration ()
13
- configuration .unstable_operations ["run_historical_job" ] = True
14
13
configuration .unstable_operations ["get_historical_job" ] = True
14
+ configuration .unstable_operations ["run_historical_job" ] = True
15
15
with ApiClient (configuration ) as api_client :
16
16
api_instance = SecurityMonitoringApi (api_client )
17
17
response = api_instance .get_historical_job (
Original file line number Diff line number Diff line change 10
10
HISTORICAL_JOB_DATA_ID = environ ["HISTORICAL_JOB_DATA_ID" ]
11
11
12
12
configuration = Configuration ()
13
- configuration .unstable_operations ["run_historical_job" ] = True
14
13
configuration .unstable_operations ["list_historical_jobs" ] = True
14
+ configuration .unstable_operations ["run_historical_job" ] = True
15
15
with ApiClient (configuration ) as api_client :
16
16
api_instance = SecurityMonitoringApi (api_client )
17
17
response = api_instance .list_historical_jobs (
You can’t perform that action at this time.
0 commit comments