Sha256: c7b33ab788decc4a85fe5c649213ce1a2f013cb5d8fee67df673bd085bc100f1
Contents?: true
Size: 1.62 KB
Versions: 7
Compression:
Stored size: 1.62 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::V2017_02_01 module Models # # Specifies which Redis node(s) to reboot. # class RedisRebootParameters include MsRestAzure # @return [RebootType] Which Redis node(s) to reboot. Depending on this # value data loss is possible. Possible values include: 'PrimaryNode', # 'SecondaryNode', 'AllNodes' attr_accessor :reboot_type # @return [Integer] If clustering is enabled, the ID of the shard to be # rebooted. attr_accessor :shard_id # # Mapper for RedisRebootParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RedisRebootParameters', type: { name: 'Composite', class_name: 'RedisRebootParameters', model_properties: { reboot_type: { client_side_validation: true, required: true, serialized_name: 'rebootType', type: { name: 'String' } }, shard_id: { client_side_validation: true, required: false, serialized_name: 'shardId', type: { name: 'Number' } } } } } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems