Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.batchai; import com.fasterxml.jackson.annotation.JsonProperty;
Custom tool kit job settings.
/** * Custom tool kit job settings. */
public class CustomToolkitSettings {
Command line. The command line to execute on the master node.
/** * Command line. * The command line to execute on the master node. */
@JsonProperty(value = "commandLine") private String commandLine;
Get the command line to execute on the master node.
Returns:the commandLine value
/** * Get the command line to execute on the master node. * * @return the commandLine value */
public String commandLine() { return this.commandLine; }
Set the command line to execute on the master node.
Params:
  • commandLine – the commandLine value to set
Returns:the CustomToolkitSettings object itself.
/** * Set the command line to execute on the master node. * * @param commandLine the commandLine value to set * @return the CustomToolkitSettings object itself. */
public CustomToolkitSettings withCommandLine(String commandLine) { this.commandLine = commandLine; return this; } }