Skip to content

Commit b3ebb9d

Browse files
committed
feat: add support for time based application list filters
Added support for time-based filters such as startTimeInterval, submissionTimeInterval, endTimeInterval Signed-off-by: Akhil Jonnalagadda <[email protected]>
1 parent a2aa4db commit b3ebb9d

File tree

4 files changed

+1104
-752
lines changed

4 files changed

+1104
-752
lines changed

examples/test_ibm_analytics_engine_api_v3_examples.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# Start of Examples for Service: IbmAnalyticsEngineApiV3
4747
##############################################################################
4848
# region
49-
class TestIbmAnalyticsEngineApiV3Examples:
49+
class TestIbmAnalyticsEngineApiV3Examples():
5050
"""
5151
Example Test Class for IbmAnalyticsEngineApiV3
5252
"""
@@ -59,7 +59,8 @@ def setup_class(cls):
5959

6060
# begin-common
6161

62-
ibm_analytics_engine_api_service = IbmAnalyticsEngineApiV3.new_instance()
62+
ibm_analytics_engine_api_service = IbmAnalyticsEngineApiV3.new_instance(
63+
)
6364

6465
# end-common
6566
assert ibm_analytics_engine_api_service is not None
@@ -265,7 +266,7 @@ def test_replace_instance_default_runtime_example(self):
265266

266267
response = ibm_analytics_engine_api_service.replace_instance_default_runtime(
267268
instance_id='e64c907a-e82f-46fd-addc-ccfafbd28b09',
268-
spark_version="3.3",
269+
spark_version='3.4',
269270
)
270271
runtime = response.get_result()
271272

@@ -286,7 +287,7 @@ def test_create_application_example(self):
286287
# begin-create_application
287288

288289
runtime_model = {
289-
'spark_version': '3.3',
290+
'spark_version': '3.4',
290291
}
291292

292293
application_request_application_details_model = {
@@ -585,7 +586,6 @@ def test_stop_spark_history_server_example(self):
585586
except ApiException as e:
586587
pytest.fail(str(e))
587588

588-
589589
# endregion
590590
##############################################################################
591591
# End of Examples for Service: IbmAnalyticsEngineApiV3

0 commit comments

Comments
 (0)