@@ -160,15 +160,15 @@ def _translate_env(self, runtime: Runtime) -> dict:
160
160
def _translate_env_config (self , runtime : Runtime ) -> dict :
161
161
"""Translate the environment configuration details for container runtime.
162
162
163
- OCI Data Science job requires ``jobEnvironmentConfigurationDetails `` payload if job is running in custom container.
164
- This method is designed to handle the conversion of the ADS runtime properties to ``jobEnvironmentConfigurationDetails `` payload.
163
+ OCI Data Science job requires ``OcirContainerJobEnvironmentConfigurationDetails `` payload if job is running in custom container.
164
+ This method is designed to handle the conversion of the ADS runtime properties to ``OcirContainerJobEnvironmentConfigurationDetails `` payload.
165
165
By default, no conversion is made in this method.
166
166
Sub-class should override this method to add conversion logic.
167
167
168
168
Returns
169
169
-------
170
170
dict
171
- A dictionary storing the ``jobEnvironmentConfigurationDetails `` payload for OCI data science job.
171
+ A dictionary storing the ``OcirContainerJobEnvironmentConfigurationDetails `` payload for OCI data science job.
172
172
"""
173
173
return None
174
174
@@ -1002,7 +1002,7 @@ def _translate_artifact(self, runtime: Runtime):
1002
1002
)
1003
1003
1004
1004
def _translate_env_config (self , runtime : Runtime ) -> dict :
1005
- """Converts runtime properties to ``jobEnvironmentConfigurationDetails `` payload required by OCI Data Science job.
1005
+ """Converts runtime properties to ``OcirContainerJobEnvironmentConfigurationDetails `` payload required by OCI Data Science job.
1006
1006
1007
1007
Parameters
1008
1008
----------
@@ -1012,7 +1012,7 @@ def _translate_env_config(self, runtime: Runtime) -> dict:
1012
1012
Returns
1013
1013
-------
1014
1014
dict
1015
- A dictionary storing the ``jobEnvironmentConfigurationDetails `` payload for OCI data science job.
1015
+ A dictionary storing the ``OcirContainerJobEnvironmentConfigurationDetails `` payload for OCI data science job.
1016
1016
"""
1017
1017
job_environment_configuration_details = {
1018
1018
"job_environment_type" : runtime .job_env_type
0 commit comments