Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions batchai/resource-manager/v2017_09_01_preview/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.azure-mgmt-batchai-2017-09-01-preview</groupId>
<groupId>com.microsoft.azure.batchai.v2017_09_01_preview</groupId>
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.0.0</version>
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-batchai</artifactId>
<version>1.0.0-beta-SNAPSHOT</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for BatchAI Management</name>
<description>This package contains Microsoft BatchAI Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public AzureBlobFileSystemReference withCredentials(AzureStorageCredentialsInfo
}

/**
* Get the relativeMountPath value.
* Get note that all blob file systems will be mounted under $AZ_BATCHAI_MOUNT_ROOT location.
*
* @return the relativeMountPath value
*/
Expand All @@ -119,7 +119,7 @@ public String relativeMountPath() {
}

/**
* Set the relativeMountPath value.
* Set note that all blob file systems will be mounted under $AZ_BATCHAI_MOUNT_ROOT location.
*
* @param relativeMountPath the relativeMountPath value to set
* @return the AzureBlobFileSystemReference object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public AzureFileShareReference withCredentials(AzureStorageCredentialsInfo crede
}

/**
* Get the relativeMountPath value.
* Get note that all file shares will be mounted under $AZ_BATCHAI_MOUNT_ROOT location.
*
* @return the relativeMountPath value
*/
Expand All @@ -125,7 +125,7 @@ public String relativeMountPath() {
}

/**
* Set the relativeMountPath value.
* Set note that all file shares will be mounted under $AZ_BATCHAI_MOUNT_ROOT location.
*
* @param relativeMountPath the relativeMountPath value to set
* @return the AzureFileShareReference object itself.
Expand All @@ -136,7 +136,7 @@ public AzureFileShareReference withRelativeMountPath(String relativeMountPath) {
}

/**
* Get the fileMode value.
* Get default value is 0777. Valid only if OS is linux.
*
* @return the fileMode value
*/
Expand All @@ -145,7 +145,7 @@ public String fileMode() {
}

/**
* Set the fileMode value.
* Set default value is 0777. Valid only if OS is linux.
*
* @param fileMode the fileMode value to set
* @return the AzureFileShareReference object itself.
Expand All @@ -156,7 +156,7 @@ public AzureFileShareReference withFileMode(String fileMode) {
}

/**
* Get the directoryMode value.
* Get default value is 0777. Valid only if OS is linux.
*
* @return the directoryMode value
*/
Expand All @@ -165,7 +165,7 @@ public String directoryMode() {
}

/**
* Set the directoryMode value.
* Set default value is 0777. Valid only if OS is linux.
*
* @param directoryMode the directoryMode value to set
* @return the AzureFileShareReference object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AzureStorageCredentialsInfo {
private KeyVaultSecretReference accountKeySecretReference;

/**
* Get the accountKey value.
* Get one of accountKey or accountKeySecretReference must be specified.
*
* @return the accountKey value
*/
Expand All @@ -41,7 +41,7 @@ public String accountKey() {
}

/**
* Set the accountKey value.
* Set one of accountKey or accountKeySecretReference must be specified.
*
* @param accountKey the accountKey value to set
* @return the AzureStorageCredentialsInfo object itself.
Expand All @@ -52,7 +52,7 @@ public AzureStorageCredentialsInfo withAccountKey(String accountKey) {
}

/**
* Get the accountKeySecretReference value.
* Get users can store their secrets in Azure KeyVault and pass it to the Batch AI Service to integrate with KeyVault. One of accountKey or accountKeySecretReference must be specified.
*
* @return the accountKeySecretReference value
*/
Expand All @@ -61,7 +61,7 @@ public KeyVaultSecretReference accountKeySecretReference() {
}

/**
* Set the accountKeySecretReference value.
* Set users can store their secrets in Azure KeyVault and pass it to the Batch AI Service to integrate with KeyVault. One of accountKey or accountKeySecretReference must be specified.
*
* @param accountKeySecretReference the accountKeySecretReference value to set
* @return the AzureStorageCredentialsInfo object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class BatchAIError {
private List<NameValuePair> details;

/**
* Get the code value.
* Get an identifier for the error. Codes are invariant and are intended to be consumed programmatically.
*
* @return the code value
*/
Expand All @@ -45,7 +45,7 @@ public String code() {
}

/**
* Set the code value.
* Set an identifier for the error. Codes are invariant and are intended to be consumed programmatically.
*
* @param code the code value to set
* @return the BatchAIError object itself.
Expand All @@ -56,7 +56,7 @@ public BatchAIError withCode(String code) {
}

/**
* Get the message value.
* Get a message describing the error, intended to be suitable for display in a user interface.
*
* @return the message value
*/
Expand All @@ -65,7 +65,7 @@ public String message() {
}

/**
* Set the message value.
* Set a message describing the error, intended to be suitable for display in a user interface.
*
* @param message the message value to set
* @return the BatchAIError object itself.
Expand All @@ -76,7 +76,7 @@ public BatchAIError withMessage(String message) {
}

/**
* Get the details value.
* Get a list of additional details about the error.
*
* @return the details value
*/
Expand All @@ -85,7 +85,7 @@ public List<NameValuePair> details() {
}

/**
* Set the details value.
* Set a list of additional details about the error.
*
* @param details the details value to set
* @return the BatchAIError object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class CNTKsettings {
private Integer processCount;

/**
* Get the languageType value.
* Get valid values are 'BrainScript' or 'Python'.
*
* @return the languageType value
*/
Expand All @@ -68,7 +68,7 @@ public String languageType() {
}

/**
* Set the languageType value.
* Set valid values are 'BrainScript' or 'Python'.
*
* @param languageType the languageType value to set
* @return the CNTKsettings object itself.
Expand All @@ -79,7 +79,7 @@ public CNTKsettings withLanguageType(String languageType) {
}

/**
* Get the configFilePath value.
* Get this property can be specified only if the languageType is 'BrainScript'.
*
* @return the configFilePath value
*/
Expand All @@ -88,7 +88,7 @@ public String configFilePath() {
}

/**
* Set the configFilePath value.
* Set this property can be specified only if the languageType is 'BrainScript'.
*
* @param configFilePath the configFilePath value to set
* @return the CNTKsettings object itself.
Expand All @@ -99,7 +99,7 @@ public CNTKsettings withConfigFilePath(String configFilePath) {
}

/**
* Get the pythonScriptFilePath value.
* Get this property can be specified only if the languageType is 'Python'.
*
* @return the pythonScriptFilePath value
*/
Expand All @@ -108,7 +108,7 @@ public String pythonScriptFilePath() {
}

/**
* Set the pythonScriptFilePath value.
* Set this property can be specified only if the languageType is 'Python'.
*
* @param pythonScriptFilePath the pythonScriptFilePath value to set
* @return the CNTKsettings object itself.
Expand All @@ -119,7 +119,7 @@ public CNTKsettings withPythonScriptFilePath(String pythonScriptFilePath) {
}

/**
* Get the pythonInterpreterPath value.
* Get this property can be specified only if the languageType is 'Python'.
*
* @return the pythonInterpreterPath value
*/
Expand All @@ -128,7 +128,7 @@ public String pythonInterpreterPath() {
}

/**
* Set the pythonInterpreterPath value.
* Set this property can be specified only if the languageType is 'Python'.
*
* @param pythonInterpreterPath the pythonInterpreterPath value to set
* @return the CNTKsettings object itself.
Expand Down Expand Up @@ -159,7 +159,7 @@ public CNTKsettings withCommandLineArgs(String commandLineArgs) {
}

/**
* Get the processCount value.
* Get the default value for this property is equal to nodeCount property.
*
* @return the processCount value
*/
Expand All @@ -168,7 +168,7 @@ public Integer processCount() {
}

/**
* Set the processCount value.
* Set the default value for this property is equal to nodeCount property.
*
* @param processCount the processCount value to set
* @return the CNTKsettings object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class CaffeSettings {
private Integer processCount;

/**
* Get the configFilePath value.
* Get this property cannot be specified if pythonScriptFilePath is specified.
*
* @return the configFilePath value
*/
Expand All @@ -59,7 +59,7 @@ public String configFilePath() {
}

/**
* Set the configFilePath value.
* Set this property cannot be specified if pythonScriptFilePath is specified.
*
* @param configFilePath the configFilePath value to set
* @return the CaffeSettings object itself.
Expand All @@ -70,7 +70,7 @@ public CaffeSettings withConfigFilePath(String configFilePath) {
}

/**
* Get the pythonScriptFilePath value.
* Get this property cannot be specified if configFilePath is specified.
*
* @return the pythonScriptFilePath value
*/
Expand All @@ -79,7 +79,7 @@ public String pythonScriptFilePath() {
}

/**
* Set the pythonScriptFilePath value.
* Set this property cannot be specified if configFilePath is specified.
*
* @param pythonScriptFilePath the pythonScriptFilePath value to set
* @return the CaffeSettings object itself.
Expand All @@ -90,7 +90,7 @@ public CaffeSettings withPythonScriptFilePath(String pythonScriptFilePath) {
}

/**
* Get the pythonInterpreterPath value.
* Get this property can be specified only if the pythonScriptFilePath is specified.
*
* @return the pythonInterpreterPath value
*/
Expand All @@ -99,7 +99,7 @@ public String pythonInterpreterPath() {
}

/**
* Set the pythonInterpreterPath value.
* Set this property can be specified only if the pythonScriptFilePath is specified.
*
* @param pythonInterpreterPath the pythonInterpreterPath value to set
* @return the CaffeSettings object itself.
Expand Down Expand Up @@ -130,7 +130,7 @@ public CaffeSettings withCommandLineArgs(String commandLineArgs) {
}

/**
* Get the processCount value.
* Get the default value for this property is equal to nodeCount property.
*
* @return the processCount value
*/
Expand All @@ -139,7 +139,7 @@ public Integer processCount() {
}

/**
* Set the processCount value.
* Set the default value for this property is equal to nodeCount property.
*
* @param processCount the processCount value to set
* @return the CaffeSettings object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public ChainerSettings withCommandLineArgs(String commandLineArgs) {
}

/**
* Get the processCount value.
* Get the default value for this property is equal to nodeCount property.
*
* @return the processCount value
*/
Expand All @@ -109,7 +109,7 @@ public Integer processCount() {
}

/**
* Set the processCount value.
* Set the default value for this property is equal to nodeCount property.
*
* @param processCount the processCount value to set
* @return the ChainerSettings object itself.
Expand Down
Loading