class Azure::Web::Mgmt::V2020_09_01::Models::ResourceNameAvailability

Information regarding availability of a resource name.

Attributes

message[RW]

@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.

name_available[RW]

@return [Boolean] true indicates name is valid and available. false indicates the name is invalid, unavailable, or both.

reason[RW]

@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() click to toggle source

Mapper for ResourceNameAvailability class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-09-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