Skip to content

Commit

Permalink
feat: add support for time based application list filters
Browse files Browse the repository at this point in the history
Added support for time-based filters such as startTimeInterval, submissionTimeInterval, endTimeInterval

Signed-off-by: Akhil Jonnalagadda <akhil.jonnalagadda@gmail.com>
  • Loading branch information
Akhil-J committed Sep 20, 2023
1 parent a2aa4db commit b3ebb9d
Show file tree
Hide file tree
Showing 4 changed files with 1,104 additions and 752 deletions.
10 changes: 5 additions & 5 deletions examples/test_ibm_analytics_engine_api_v3_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# Start of Examples for Service: IbmAnalyticsEngineApiV3
##############################################################################
# region
class TestIbmAnalyticsEngineApiV3Examples:
class TestIbmAnalyticsEngineApiV3Examples():
"""
Example Test Class for IbmAnalyticsEngineApiV3
"""
Expand All @@ -59,7 +59,8 @@ def setup_class(cls):

# begin-common

ibm_analytics_engine_api_service = IbmAnalyticsEngineApiV3.new_instance()
ibm_analytics_engine_api_service = IbmAnalyticsEngineApiV3.new_instance(
)

# end-common
assert ibm_analytics_engine_api_service is not None
Expand Down Expand Up @@ -265,7 +266,7 @@ def test_replace_instance_default_runtime_example(self):

response = ibm_analytics_engine_api_service.replace_instance_default_runtime(
instance_id='e64c907a-e82f-46fd-addc-ccfafbd28b09',
spark_version="3.3",
spark_version='3.4',
)
runtime = response.get_result()

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

runtime_model = {
'spark_version': '3.3',
'spark_version': '3.4',
}

application_request_application_details_model = {
Expand Down Expand Up @@ -585,7 +586,6 @@ def test_stop_spark_history_server_example(self):
except ApiException as e:
pytest.fail(str(e))


# endregion
##############################################################################
# End of Examples for Service: IbmAnalyticsEngineApiV3
Expand Down
Loading

0 comments on commit b3ebb9d

Please sign in to comment.