com.azure.resourcemanager.keyvault.models.CheckNameAvailabilityResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-keyvault Show documentation
Show all versions of azure-resourcemanager-keyvault Show documentation
This package contains Microsoft Azure Key Vault Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.keyvault.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.keyvault.fluent.models.CheckNameAvailabilityResultInner;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
/** The CheckNameAvailability operation response wrapper. */
@Fluent
public interface CheckNameAvailabilityResult extends HasInnerModel {
/**
* Get the nameAvailable value.
*
* @return the nameAvailable value
*/
Boolean nameAvailable();
/**
* Get the reason value.
*
* @return the reason value
*/
Reason reason();
/**
* Get the message value.
*
* @return the message value
*/
String message();
}