class Azure::StorageSync::Mgmt::V2019_03_01::Models::FilesNotSyncingError

Files not syncing error object

Attributes

error_code[RW]

@return [Integer] Error code (HResult)

persistent_count[RW]

@return [Integer] Count of persistent files not syncing with the specified error code

transient_count[RW]

@return [Integer] Count of transient files not syncing with the specified error code

Public Class Methods

mapper() click to toggle source

Mapper for FilesNotSyncingError class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-03-01/generated/azure_mgmt_storagesync/models/files_not_syncing_error.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FilesNotSyncingError',
    type: {
      name: 'Composite',
      class_name: 'FilesNotSyncingError',
      model_properties: {
        error_code: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'errorCode',
          type: {
            name: 'Number'
          }
        },
        persistent_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'persistentCount',
          type: {
            name: 'Number'
          }
        },
        transient_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'transientCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end