Sha256: 8ca5179dca7c0ef824a4eb7d317782de92ffe99b66df0642ccf4959d56b74a2c
Contents?: true
Size: 1.85 KB
Versions: 2
Compression:
Stored size: 1.85 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Redis::Mgmt::V2016_04_01 module Models # # SKU parameters supplied to the create Redis operation. # class Sku include MsRestAzure # @return [SkuName] The type of Redis cache to deploy. Valid values: # (Basic, Standard, Premium). Possible values include: 'Basic', # 'Standard', 'Premium' attr_accessor :name # @return [SkuFamily] The SKU family to use. Valid values: (C, P). (C = # Basic/Standard, P = Premium). Possible values include: 'C', 'P' attr_accessor :family # @return [Integer] The size of the Redis cache to deploy. Valid values: # for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) # family (1, 2, 3, 4). attr_accessor :capacity # # Mapper for Sku class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'Sku', type: { name: 'Composite', class_name: 'Sku', model_properties: { name: { required: true, serialized_name: 'name', type: { name: 'String' } }, family: { required: true, serialized_name: 'family', type: { name: 'String' } }, capacity: { required: true, serialized_name: 'capacity', type: { name: 'Number' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_redis-0.15.1 | lib/2016-04-01/generated/azure_mgmt_redis/models/sku.rb |
azure_mgmt_redis-0.15.0 | lib/2016-04-01/generated/azure_mgmt_redis/models/sku.rb |