class Azure::Web::Mgmt::V2016_03_01::Models::ResourceNameAvailability
Information regarding availbility of a resource name.
Attributes
@return [String] 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 resource name is already in use, and direct them to select a different name.
@return [Boolean] true
indicates name is valid and available. false
indicates the name is invalid, unavailable, or both.
@return [InAvailabilityReasonType] Invalid
indicates the name provided does not match Azure
App Service naming requirements. AlreadyExists
indicates that the name is already in use and is therefore unavailable. Possible values include: 'Invalid', 'AlreadyExists'
Private Class Methods
Mapper for ResourceNameAvailability
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_web/models/resource_name_availability.rb, line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceNameAvailability', type: { name: 'Composite', class_name: 'ResourceNameAvailability', model_properties: { name_available: { client_side_validation: true, required: false, serialized_name: 'nameAvailable', type: { name: 'Boolean' } }, reason: { client_side_validation: true, required: false, serialized_name: 'reason', type: { name: 'String' } }, message: { client_side_validation: true, required: false, serialized_name: 'message', type: { name: 'String' } } } } } end