All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.batch.BatchAccountKeys Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.41.4
Show newest version
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