com.microsoft.azure.management.batch.implementation.BatchAccountKeysInner 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.
/**
* 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.batch.implementation;
/**
* A set of Azure Batch account keys.
*/
public class BatchAccountKeysInner {
/**
* The primary key associated with the account.
*/
private String primary;
/**
* The secondary key associated with the account.
*/
private String secondary;
/**
* Get the primary value.
*
* @return the primary value
*/
public String primary() {
return this.primary;
}
/**
* Set the primary value.
*
* @param primary the primary value to set
* @return the BatchAccountKeysInner object itself.
*/
public BatchAccountKeysInner withPrimary(String primary) {
this.primary = primary;
return this;
}
/**
* Get the secondary value.
*
* @return the secondary value
*/
public String secondary() {
return this.secondary;
}
/**
* Set the secondary value.
*
* @param secondary the secondary value to set
* @return the BatchAccountKeysInner object itself.
*/
public BatchAccountKeysInner withSecondary(String secondary) {
this.secondary = secondary;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy