# 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::ServiceFabric::V6_3_0_9 module Models # # Describes the expected impact of a repair on a set of nodes. # # This type supports the Service Fabric platform; it is not meant to be # used directly from your code. # class NodeRepairImpactDescription < RepairImpactDescriptionBase include MsRestAzure def initialize @Kind = "Node" end attr_accessor :Kind # @return [Array] The list of nodes impacted by a repair # action and their respective expected impact. attr_accessor :node_impact_list # # Mapper for NodeRepairImpactDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Node', type: { name: 'Composite', class_name: 'NodeRepairImpactDescription', model_properties: { Kind: { client_side_validation: true, required: true, serialized_name: 'Kind', type: { name: 'String' } }, node_impact_list: { client_side_validation: true, required: false, serialized_name: 'NodeImpactList', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'NodeImpactElementType', type: { name: 'Composite', class_name: 'NodeImpact' } } } } } } } end end end end