Class: Azure::StorageSync::Mgmt::V2019_02_01::Models::SyncSessionStatus
- Inherits:
-
Object
- Object
- Azure::StorageSync::Mgmt::V2019_02_01::Models::SyncSessionStatus
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb
Overview
Sync Session status object.
Instance Attribute Summary collapse
-
#files_not_syncing_errors ⇒ Array<FilesNotSyncingError>
from the last sync session.
-
#last_sync_per_item_error_count ⇒ Integer
Last sync per item error count.
-
#last_sync_result ⇒ Integer
Last sync result (HResult).
-
#last_sync_success_timestamp ⇒ DateTime
Last sync success timestamp.
-
#last_sync_timestamp ⇒ DateTime
Last sync timestamp.
-
#persistent_files_not_syncing_count ⇒ Integer
future use.
-
#transient_files_not_syncing_count ⇒ Integer
future use.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SyncSessionStatus class as Ruby Hash.
Instance Attribute Details
#files_not_syncing_errors ⇒ Array<FilesNotSyncingError>
from the last sync session. Reserved for future use.
37 38 39 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 37 def files_not_syncing_errors @files_not_syncing_errors end |
#last_sync_per_item_error_count ⇒ Integer
Returns Last sync per item error count.
25 26 27 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 25 def last_sync_per_item_error_count @last_sync_per_item_error_count end |
#last_sync_result ⇒ Integer
Returns Last sync result (HResult).
16 17 18 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 16 def last_sync_result @last_sync_result end |
#last_sync_success_timestamp ⇒ DateTime
Returns Last sync success timestamp.
22 23 24 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 22 def @last_sync_success_timestamp end |
#last_sync_timestamp ⇒ DateTime
Returns Last sync timestamp.
19 20 21 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 19 def @last_sync_timestamp end |
#persistent_files_not_syncing_count ⇒ Integer
future use.
29 30 31 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 29 def persistent_files_not_syncing_count @persistent_files_not_syncing_count end |
#transient_files_not_syncing_count ⇒ Integer
future use.
33 34 35 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 33 def transient_files_not_syncing_count @transient_files_not_syncing_count end |
Class Method Details
.mapper ⇒ Object
Mapper for SyncSessionStatus class as Ruby Hash. This will be used for serialization/deserialization.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/2019-02-01/generated/azure_mgmt_storagesync/models/sync_session_status.rb', line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncSessionStatus', type: { name: 'Composite', class_name: 'SyncSessionStatus', model_properties: { last_sync_result: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastSyncResult', type: { name: 'Number' } }, last_sync_timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastSyncTimestamp', type: { name: 'DateTime' } }, last_sync_success_timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastSyncSuccessTimestamp', type: { name: 'DateTime' } }, last_sync_per_item_error_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastSyncPerItemErrorCount', type: { name: 'Number' } }, persistent_files_not_syncing_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'persistentFilesNotSyncingCount', type: { name: 'Number' } }, transient_files_not_syncing_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'transientFilesNotSyncingCount', type: { name: 'Number' } }, files_not_syncing_errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'filesNotSyncingErrors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'FilesNotSyncingErrorElementType', type: { name: 'Composite', class_name: 'FilesNotSyncingError' } } } } } } } end |