class Azure::NetApp::Mgmt::V2020_11_01::Models::ReplicationStatus

Replication status

Attributes

error_message[RW]

@return [String] Displays error message if the replication is in an error state

healthy[RW]

@return [Boolean] Replication health check

mirror_state[RW]

@return [MirrorState] The status of the replication. Possible values include: 'Uninitialized', 'Mirrored', 'Broken'

relationship_status[RW]

@return [RelationshipStatus] Status of the mirror relationship. Possible values include: 'Idle', 'Transferring'

total_progress[RW]

@return [String] The progress of the replication

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-11-01/generated/azure_mgmt_netapp/models/replication_status.rb, line 38
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'replicationStatus',
    type: {
      name: 'Composite',
      class_name: 'ReplicationStatus',
      model_properties: {
        healthy: {
          client_side_validation: true,
          required: false,
          serialized_name: 'healthy',
          type: {
            name: 'Boolean'
          }
        },
        relationship_status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'relationshipStatus',
          type: {
            name: 'String'
          }
        },
        mirror_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'mirrorState',
          type: {
            name: 'String'
          }
        },
        total_progress: {
          client_side_validation: true,
          required: false,
          serialized_name: 'totalProgress',
          type: {
            name: 'String'
          }
        },
        error_message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errorMessage',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end