# 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_2_0_9 module Models # # An internal ID used by Service Fabric to uniquely identify a node. Node # Id is deterministically generated from node name. # class NodeId include MsRestAzure # @return [String] Value of the node Id. This is a 128 bit integer. attr_accessor :id # # Mapper for NodeId class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NodeId', type: { name: 'Composite', class_name: 'NodeId', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'Id', type: { name: 'String' } } } } } end end end end