com.microsoft.azure.management.batch.BatchAccountKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-batch Show documentation
Show all versions of azure-mgmt-batch Show documentation
This package contains Microsoft Azure Batch Account Management SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-batch is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
package com.microsoft.azure.management.batch;
import com.microsoft.azure.management.apigeneration.LangDefinition;
/**
* This class represents the access keys for the batch account.
*/
@LangDefinition
public class BatchAccountKeys {
/**
* The primary key associated with the account.
*/
private String primary;
/**
* The secondary key associated with the account.
*/
private String secondary;
/**
* Constructor for the class.
*
* @param primaryKey primary key value for the batch account
* @param secondaryKey secondary key value for the batch account
*/
public BatchAccountKeys(String primaryKey, String secondaryKey) {
primary = primaryKey;
secondary = secondaryKey;
}
/**
* Get the primary value.
*
* @return the primary value
*/
public String primary() {
return this.primary;
}
/**
* Get the secondary value.
*
* @return the secondary value
*/
public String secondary() {
return this.secondary;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy