class Azure::StorageSync::Mgmt::V2019_06_01::Models::ServerEndpointSyncStatus

Server Endpoint sync status

Attributes

combined_health[RW]

@return [Enum] Combined Health Status. Possible values include: 'Healthy', 'Error', 'SyncBlockedForRestore', 'SyncBlockedForChangeDetectionPostRestore', 'NoActivity'

download_activity[RW]

@return [ServerEndpointSyncActivityStatus] Download sync activity

download_health[RW]

@return [Enum] Download Health Status. Possible values include: 'Healthy', 'Error', 'SyncBlockedForRestore', 'SyncBlockedForChangeDetectionPostRestore', 'NoActivity'

download_status[RW]

@return [ServerEndpointSyncSessionStatus] Download Status

last_updated_timestamp[RW]

@return [DateTime] Last Updated Timestamp

offline_data_transfer_status[RW]

@return [Enum] Offline Data Transfer State. Possible values include: 'InProgress', 'Stopping', 'NotRunning', 'Complete'

sync_activity[RW]

@return [Enum] Sync activity. Possible values include: 'Upload', 'Download', 'UploadAndDownload'

total_persistent_files_not_syncing_count[RW]

@return [Integer] Total count of persistent files not syncing (combined upload + download).

upload_activity[RW]

@return [ServerEndpointSyncActivityStatus] Upload sync activity

upload_health[RW]

@return [Enum] Upload Health Status. Possible values include: 'Healthy', 'Error', 'SyncBlockedForRestore', 'SyncBlockedForChangeDetectionPostRestore', 'NoActivity'

upload_status[RW]

@return [ServerEndpointSyncSessionStatus] Upload Status

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01/generated/azure_mgmt_storagesync/models/server_endpoint_sync_status.rb, line 62
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ServerEndpointSyncStatus',
    type: {
      name: 'Composite',
      class_name: 'ServerEndpointSyncStatus',
      model_properties: {
        download_health: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'downloadHealth',
          type: {
            name: 'String'
          }
        },
        upload_health: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'uploadHealth',
          type: {
            name: 'String'
          }
        },
        combined_health: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'combinedHealth',
          type: {
            name: 'String'
          }
        },
        sync_activity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'syncActivity',
          type: {
            name: 'String'
          }
        },
        total_persistent_files_not_syncing_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'totalPersistentFilesNotSyncingCount',
          constraints: {
            InclusiveMinimum: 0
          },
          type: {
            name: 'Number'
          }
        },
        last_updated_timestamp: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'lastUpdatedTimestamp',
          type: {
            name: 'DateTime'
          }
        },
        upload_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'uploadStatus',
          type: {
            name: 'Composite',
            class_name: 'ServerEndpointSyncSessionStatus'
          }
        },
        download_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'downloadStatus',
          type: {
            name: 'Composite',
            class_name: 'ServerEndpointSyncSessionStatus'
          }
        },
        upload_activity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'uploadActivity',
          type: {
            name: 'Composite',
            class_name: 'ServerEndpointSyncActivityStatus'
          }
        },
        download_activity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'downloadActivity',
          type: {
            name: 'Composite',
            class_name: 'ServerEndpointSyncActivityStatus'
          }
        },
        offline_data_transfer_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'offlineDataTransferStatus',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end