class Azure::Redis::Mgmt::V2017_02_01::Models::RedisLinkedServerWithPropertiesList

List of linked servers (with properties) of a Redis cache.

Attributes

value[RW]

@return [Array<RedisLinkedServerWithProperties>] List of linked servers (with properties) of a Redis cache.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-02-01/generated/azure_mgmt_redis/models/redis_linked_server_with_properties_list.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RedisLinkedServerWithPropertiesList',
    type: {
      name: 'Composite',
      class_name: 'RedisLinkedServerWithPropertiesList',
      model_properties: {
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'RedisLinkedServerWithPropertiesElementType',
                type: {
                  name: 'Composite',
                  class_name: 'RedisLinkedServerWithProperties'
                }
            }
          }
        }
      }
    }
  }
end