com.azure.security.keyvault.administration.models.KeyVaultGetSettingsResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-security-keyvault-administration Show documentation
Show all versions of azure-security-keyvault-administration Show documentation
This module contains client library for Microsoft Azure KeyVault Administration.
// 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;
}
}