class Azure::ServiceFabric::V6_4_0_36::Models::FileVersion
Information about the version of image store file.
Attributes
epoch_configuration_number[RW]
@return [String] The epoch configuration version number of the image store replica when this file entry was created or updated.
epoch_data_loss_number[RW]
@return [String] The epoch data loss number of image store replica when this file entry was updated or created.
version_number[RW]
@return [String] The current image store version number for the file is used in image store for checking whether it need to be updated.
Public Class Methods
mapper()
click to toggle source
Mapper for FileVersion
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/file_version.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FileVersion', type: { name: 'Composite', class_name: 'FileVersion', model_properties: { version_number: { client_side_validation: true, required: false, serialized_name: 'VersionNumber', type: { name: 'String' } }, epoch_data_loss_number: { client_side_validation: true, required: false, serialized_name: 'EpochDataLossNumber', type: { name: 'String' } }, epoch_configuration_number: { client_side_validation: true, required: false, serialized_name: 'EpochConfigurationNumber', type: { name: 'String' } } } } } end