Show / Hide Table of Contents

Class MultiNodeJobNodeConfigurationDetails

MultiNodeJobNodeConfigurationDetails

Inheritance
object
JobNodeConfigurationDetails
MultiNodeJobNodeConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class MultiNodeJobNodeConfigurationDetails : JobNodeConfigurationDetails

Properties

JobNetworkConfiguration

Declaration
[JsonProperty(PropertyName = "jobNetworkConfiguration")]
public JobNetworkConfiguration JobNetworkConfiguration { get; set; }
Property Value
Type Description
JobNetworkConfiguration

JobNodeGroupConfigurationDetailsList

Declaration
[JsonProperty(PropertyName = "jobNodeGroupConfigurationDetailsList")]
public List<JobNodeGroupConfigurationDetails> JobNodeGroupConfigurationDetailsList { get; set; }
Property Value
Type Description
List<JobNodeGroupConfigurationDetails>

List of JobNodeGroupConfigurationDetails

MaximumRuntimeInMinutes

Declaration
[JsonProperty(PropertyName = "maximumRuntimeInMinutes")]
public long? MaximumRuntimeInMinutes { get; set; }
Property Value
Type Description
long?

A time bound for the execution of the job run. Timer starts when the job run is in progress.

StartupOrder

Declaration
[JsonProperty(PropertyName = "startupOrder")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MultiNodeJobNodeConfigurationDetails.StartupOrderEnum? StartupOrder { get; set; }
Property Value
Type Description
MultiNodeJobNodeConfigurationDetails.StartupOrderEnum?

The execution order of node groups

In this article
Back to top