Class ManagementGroupNameAvailabilityResult
- Namespace
- Azure.ResourceManager.ManagementGroups.Models
- Assembly
- Azure.ResourceManager.dll
Describes the result of the request to check management group name availability.
public class ManagementGroupNameAvailabilityResult : IJsonModel<ManagementGroupNameAvailabilityResult>, IPersistableModel<ManagementGroupNameAvailabilityResult>
- Inheritance
-
ManagementGroupNameAvailabilityResult
- Implements
-
IJsonModel<ManagementGroupNameAvailabilityResult>IPersistableModel<ManagementGroupNameAvailabilityResult>
- Inherited Members
Properties
Message
Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name.
public string Message { get; }
Property Value
NameAvailable
Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both.
public bool? NameAvailable { get; }
Property Value
- bool?
Reason
Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable.
public ManagementGroupNameUnavailableReason? Reason { get; }