@@ -160,15 +160,15 @@ def _translate_env(self, runtime: Runtime) -> dict:
160160 def _translate_env_config (self , runtime : Runtime ) -> dict :
161161 """Translate the environment configuration details for container runtime.
162162
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.
165165 By default, no conversion is made in this method.
166166 Sub-class should override this method to add conversion logic.
167167
168168 Returns
169169 -------
170170 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.
172172 """
173173 return None
174174
@@ -1002,7 +1002,7 @@ def _translate_artifact(self, runtime: Runtime):
10021002 )
10031003
10041004 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.
10061006
10071007 Parameters
10081008 ----------
@@ -1012,7 +1012,7 @@ def _translate_env_config(self, runtime: Runtime) -> dict:
10121012 Returns
10131013 -------
10141014 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.
10161016 """
10171017 job_environment_configuration_details = {
10181018 "job_environment_type" : runtime .job_env_type
0 commit comments