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

com.azure.security.keyvault.administration.models.KeyVaultGetSettingsResult Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.security.keyvault.administration.models;

import com.azure.core.annotation.Immutable;

import java.util.List;

/**
 * A result model containing the {@link KeyVaultSetting settings} for a given account.
 */
@Immutable
public final class KeyVaultGetSettingsResult {
    private final List settings;

    /**
     * Creates an instance of {@link KeyVaultGetSettingsResult} class.
     *
     * @param settings The {@link KeyVaultSetting settings} for the account.
     */
    public KeyVaultGetSettingsResult(List settings) {
        this.settings = settings;
    }

    /**
     * Get the list of {@link KeyVaultSetting settings} for the account.
     *
     * @return The {@link KeyVaultSetting settings} for the account.
     */
    public List getSettings() {
        return this.settings;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy