ArmMachineLearningModelFactory.MachineLearningCommandJob Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MachineLearningCommandJob(String, IDictionary<String,String>, IDictionary<String,String>, String, Nullable<MachineLearningJobStatus>, String, IDictionary<String,MachineLearningJobService>, ResourceIdentifier, Nullable<Boolean>, MachineLearningIdentityConfiguration, ResourceIdentifier, NotificationSetting, MachineLearningJobResourceConfiguration, ResourceIdentifier, String, ResourceIdentifier, IDictionary<String, MachineLearningJobInput>, IDictionary<String,MachineLearningJobOutput>, MachineLearningDistributionConfiguration, MachineLearningCommandJobLimits, IDictionary<String,String>, BinaryData, Nullable<JobTier>)
Initializes a new instance of MachineLearningCommandJob.
public static Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJob MachineLearningCommandJob (string description = default, System.Collections.Generic.IDictionary<string,string> tags = default, System.Collections.Generic.IDictionary<string,string> properties = default, string displayName = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobStatus? status = default, string experimentName = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobService> services = default, Azure.Core.ResourceIdentifier computeId = default, bool? isArchived = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningIdentityConfiguration identity = default, Azure.Core.ResourceIdentifier componentId = default, Azure.ResourceManager.MachineLearning.Models.NotificationSetting notificationSetting = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobResourceConfiguration resources = default, Azure.Core.ResourceIdentifier codeId = default, string command = default, Azure.Core.ResourceIdentifier environmentId = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobInput> inputs = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobOutput> outputs = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningDistributionConfiguration distribution = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJobLimits limits = default, System.Collections.Generic.IDictionary<string,string> environmentVariables = default, BinaryData parameters = default, Azure.ResourceManager.MachineLearning.Models.JobTier? queueJobTier = default);
static member MachineLearningCommandJob : string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningJobStatus> * string * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobService> * Azure.Core.ResourceIdentifier * Nullable<bool> * Azure.ResourceManager.MachineLearning.Models.MachineLearningIdentityConfiguration * Azure.Core.ResourceIdentifier * Azure.ResourceManager.MachineLearning.Models.NotificationSetting * Azure.ResourceManager.MachineLearning.Models.MachineLearningJobResourceConfiguration * Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceIdentifier * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobInput> * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobOutput> * Azure.ResourceManager.MachineLearning.Models.MachineLearningDistributionConfiguration * Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJobLimits * System.Collections.Generic.IDictionary<string, string> * BinaryData * Nullable<Azure.ResourceManager.MachineLearning.Models.JobTier> -> Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJob
Public Shared Function MachineLearningCommandJob (Optional description As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional properties As IDictionary(Of String, String) = Nothing, Optional displayName As String = Nothing, Optional status As Nullable(Of MachineLearningJobStatus) = Nothing, Optional experimentName As String = Nothing, Optional services As IDictionary(Of String, MachineLearningJobService) = Nothing, Optional computeId As ResourceIdentifier = Nothing, Optional isArchived As Nullable(Of Boolean) = Nothing, Optional identity As MachineLearningIdentityConfiguration = Nothing, Optional componentId As ResourceIdentifier = Nothing, Optional notificationSetting As NotificationSetting = Nothing, Optional resources As MachineLearningJobResourceConfiguration = Nothing, Optional codeId As ResourceIdentifier = Nothing, Optional command As String = Nothing, Optional environmentId As ResourceIdentifier = Nothing, Optional inputs As IDictionary(Of String, MachineLearningJobInput) = Nothing, Optional outputs As IDictionary(Of String, MachineLearningJobOutput) = Nothing, Optional distribution As MachineLearningDistributionConfiguration = Nothing, Optional limits As MachineLearningCommandJobLimits = Nothing, Optional environmentVariables As IDictionary(Of String, String) = Nothing, Optional parameters As BinaryData = Nothing, Optional queueJobTier As Nullable(Of JobTier) = Nothing) As MachineLearningCommandJob
Parameters
- description
- String
The asset description text.
- tags
- IDictionary<String,String>
Tag dictionary. Tags can be added, removed, and updated.
- properties
- IDictionary<String,String>
The asset property dictionary.
- displayName
- String
Display name of job.
- status
- Nullable<MachineLearningJobStatus>
Status of the job.
- experimentName
- String
The name of the experiment the job belongs to. If not set, the job is placed in the "Default" experiment.
- services
- IDictionary<String,MachineLearningJobService>
List of JobEndpoints. For local jobs, a job endpoint will have an endpoint value of FileStreamObject.
- computeId
- ResourceIdentifier
ARM resource ID of the compute resource.
- identity
- MachineLearningIdentityConfiguration
Identity configuration. If set, this should be one of AmlToken, ManagedIdentity, UserIdentity or null. Defaults to AmlToken if null. Please note MachineLearningIdentityConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AmlToken, MachineLearningManagedIdentity and MachineLearningUserIdentity.
- componentId
- ResourceIdentifier
ARM resource ID of the component resource.
- notificationSetting
- NotificationSetting
Notification setting for the job.
- resources
- MachineLearningJobResourceConfiguration
Compute Resource configuration for the job.
- codeId
- ResourceIdentifier
ARM resource ID of the code asset.
- command
- String
[Required] The command to execute on startup of the job. eg. "python train.py".
- environmentId
- ResourceIdentifier
[Required] The ARM resource ID of the Environment specification for the job.
- inputs
- IDictionary<String,MachineLearningJobInput>
Mapping of input data bindings used in the job. Please note MachineLearningJobInput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MachineLearningCustomModelJobInput, MachineLearningLiteralJobInput, MachineLearningFlowModelJobInput, MachineLearningTableJobInput, MachineLearningTritonModelJobInput, MachineLearningUriFileJobInput and MachineLearningUriFolderJobInput.
- outputs
- IDictionary<String,MachineLearningJobOutput>
Mapping of output data bindings used in the job. Please note MachineLearningJobOutput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MachineLearningCustomModelJobOutput, MachineLearningFlowModelJobOutput, MachineLearningTableJobOutput, MachineLearningTritonModelJobOutput, MachineLearningUriFileJobOutput and MachineLearningUriFolderJobOutput.
- distribution
- MachineLearningDistributionConfiguration
Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, or null. Please note MachineLearningDistributionConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MpiDistributionConfiguration, PyTorchDistributionConfiguration and TensorFlowDistributionConfiguration.
Command Job limit.
- environmentVariables
- IDictionary<String,String>
Environment variables included in the job.
- parameters
- BinaryData
Input parameters.
Returns
A new MachineLearningCommandJob instance for mocking.
Applies to
MachineLearningCommandJob(String, IDictionary<String,String>, IDictionary<String,String>, ResourceIdentifier, ResourceIdentifier, String, String, MachineLearningIdentityConfiguration, Nullable<Boolean>, NotificationSetting, IDictionary<String,SecretConfiguration>, IDictionary<String,MachineLearningJobService>, Nullable<MachineLearningJobStatus>, Nullable<MachineLearningFlowAutoLoggerState>, ResourceIdentifier, String, MachineLearningDistributionConfiguration, ResourceIdentifier, IDictionary<String,String>, IDictionary<String,MachineLearningJobInput>, MachineLearningCommandJobLimits, IDictionary<String,MachineLearningJobOutput>, BinaryData, JobQueueSettings, MachineLearningJobResourceConfiguration)
Initializes a new instance of MachineLearningCommandJob.
public static Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJob MachineLearningCommandJob (string description = default, System.Collections.Generic.IDictionary<string,string> properties = default, System.Collections.Generic.IDictionary<string,string> tags = default, Azure.Core.ResourceIdentifier componentId = default, Azure.Core.ResourceIdentifier computeId = default, string displayName = default, string experimentName = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningIdentityConfiguration identity = default, bool? isArchived = default, Azure.ResourceManager.MachineLearning.Models.NotificationSetting notificationSetting = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.SecretConfiguration> secretsConfiguration = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobService> services = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobStatus? status = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningFlowAutoLoggerState? mlflowAutologger = default, Azure.Core.ResourceIdentifier codeId = default, string command = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningDistributionConfiguration distribution = default, Azure.Core.ResourceIdentifier environmentId = default, System.Collections.Generic.IDictionary<string,string> environmentVariables = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobInput> inputs = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJobLimits limits = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.MachineLearning.Models.MachineLearningJobOutput> outputs = default, BinaryData parameters = default, Azure.ResourceManager.MachineLearning.Models.JobQueueSettings queueSettings = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobResourceConfiguration resources = default);
static member MachineLearningCommandJob : string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> * Azure.Core.ResourceIdentifier * Azure.Core.ResourceIdentifier * string * string * Azure.ResourceManager.MachineLearning.Models.MachineLearningIdentityConfiguration * Nullable<bool> * Azure.ResourceManager.MachineLearning.Models.NotificationSetting * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.SecretConfiguration> * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobService> * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningJobStatus> * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningFlowAutoLoggerState> * Azure.Core.ResourceIdentifier * string * Azure.ResourceManager.MachineLearning.Models.MachineLearningDistributionConfiguration * Azure.Core.ResourceIdentifier * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobInput> * Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJobLimits * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.MachineLearning.Models.MachineLearningJobOutput> * BinaryData * Azure.ResourceManager.MachineLearning.Models.JobQueueSettings * Azure.ResourceManager.MachineLearning.Models.MachineLearningJobResourceConfiguration -> Azure.ResourceManager.MachineLearning.Models.MachineLearningCommandJob
Public Shared Function MachineLearningCommandJob (Optional description As String = Nothing, Optional properties As IDictionary(Of String, String) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional componentId As ResourceIdentifier = Nothing, Optional computeId As ResourceIdentifier = Nothing, Optional displayName As String = Nothing, Optional experimentName As String = Nothing, Optional identity As MachineLearningIdentityConfiguration = Nothing, Optional isArchived As Nullable(Of Boolean) = Nothing, Optional notificationSetting As NotificationSetting = Nothing, Optional secretsConfiguration As IDictionary(Of String, SecretConfiguration) = Nothing, Optional services As IDictionary(Of String, MachineLearningJobService) = Nothing, Optional status As Nullable(Of MachineLearningJobStatus) = Nothing, Optional mlflowAutologger As Nullable(Of MachineLearningFlowAutoLoggerState) = Nothing, Optional codeId As ResourceIdentifier = Nothing, Optional command As String = Nothing, Optional distribution As MachineLearningDistributionConfiguration = Nothing, Optional environmentId As ResourceIdentifier = Nothing, Optional environmentVariables As IDictionary(Of String, String) = Nothing, Optional inputs As IDictionary(Of String, MachineLearningJobInput) = Nothing, Optional limits As MachineLearningCommandJobLimits = Nothing, Optional outputs As IDictionary(Of String, MachineLearningJobOutput) = Nothing, Optional parameters As BinaryData = Nothing, Optional queueSettings As JobQueueSettings = Nothing, Optional resources As MachineLearningJobResourceConfiguration = Nothing) As MachineLearningCommandJob
Parameters
- description
- String
The asset description text.
- properties
- IDictionary<String,String>
The asset property dictionary.
- tags
- IDictionary<String,String>
Tag dictionary. Tags can be added, removed, and updated.
- componentId
- ResourceIdentifier
ARM resource ID of the component resource.
- computeId
- ResourceIdentifier
ARM resource ID of the compute resource.
- displayName
- String
Display name of job.
- experimentName
- String
The name of the experiment the job belongs to. If not set, the job is placed in the "Default" experiment.
- identity
- MachineLearningIdentityConfiguration
Identity configuration. If set, this should be one of AmlToken, ManagedIdentity, UserIdentity or null. Defaults to AmlToken if null. Please note MachineLearningIdentityConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AmlToken, MachineLearningManagedIdentity and MachineLearningUserIdentity.
- notificationSetting
- NotificationSetting
Notification setting for the job.
- secretsConfiguration
- IDictionary<String,SecretConfiguration>
Configuration for secrets to be made available during runtime.
- services
- IDictionary<String,MachineLearningJobService>
List of JobEndpoints. For local jobs, a job endpoint will have an endpoint value of FileStreamObject.
- status
- Nullable<MachineLearningJobStatus>
Status of the job.
- mlflowAutologger
- Nullable<MachineLearningFlowAutoLoggerState>
Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, or null.
- codeId
- ResourceIdentifier
ARM resource ID of the code asset.
- command
- String
[Required] The command to execute on startup of the job. eg. "python train.py".
- distribution
- MachineLearningDistributionConfiguration
Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, Ray, or null. Please note MachineLearningDistributionConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MpiDistributionConfiguration, PyTorchDistributionConfiguration, RayDistributionConfiguration and TensorFlowDistributionConfiguration.
- environmentId
- ResourceIdentifier
[Required] The ARM resource ID of the Environment specification for the job.
- environmentVariables
- IDictionary<String,String>
Environment variables included in the job.
- inputs
- IDictionary<String,MachineLearningJobInput>
Mapping of input data bindings used in the job. Please note MachineLearningJobInput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MachineLearningCustomModelJobInput, MachineLearningLiteralJobInput, MachineLearningFlowModelJobInput, MachineLearningTableJobInput, MachineLearningTritonModelJobInput, MachineLearningUriFileJobInput and MachineLearningUriFolderJobInput.
Command Job limit.
- outputs
- IDictionary<String,MachineLearningJobOutput>
Mapping of output data bindings used in the job. Please note MachineLearningJobOutput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MachineLearningCustomModelJobOutput, MachineLearningFlowModelJobOutput, MachineLearningTableJobOutput, MachineLearningTritonModelJobOutput, MachineLearningUriFileJobOutput and MachineLearningUriFolderJobOutput.
- parameters
- BinaryData
Input parameters.
- queueSettings
- JobQueueSettings
Queue settings for the job.
- resources
- MachineLearningJobResourceConfiguration
Compute Resource configuration for the job.
Returns
A new MachineLearningCommandJob instance for mocking.
Applies to
Azure SDK for .NET