Sha256: 6a0aea081f9ccd8f66e9ca1a19295da7cac9f03457cdcb27b6d9791abaa97617
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Search module Models # # Input of check name availability API. # class CheckNameAvailabilityInput include MsRestAzure # @return [String] The Search service name to validate. Search service # names must only contain lowercase letters, digits or dashes, cannot use # dash as the first two or last one characters, cannot contain # consecutive dashes, and must be between 2 and 60 characters in length. attr_accessor :name # @return [String] The type of the resource whose name is to be # validated. This value must always be 'searchServices'. Default value: # 'searchServices' . attr_accessor :type # # Mapper for CheckNameAvailabilityInput class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'CheckNameAvailabilityInput', type: { name: 'Composite', class_name: 'CheckNameAvailabilityInput', model_properties: { name: { required: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: true, is_constant: true, serialized_name: 'type', default_value: 'searchServices', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_search-0.10.0 | lib/generated/azure_mgmt_search/models/check_name_availability_input.rb |