class Azure::NetApp::Mgmt::V2019_08_01::Models::ReplicationObject

Replication properties

Attributes

endpoint_type[RW]

@return [String] endpointType. Indicates whether the local volume is the source or destination for the Volume Replication

remote_volume_resource_id[RW]

@return [String] remoteVolumeResourceId. The resource ID of the remote volume.

replication_id[RW]

@return [String] replicationId. Id

replication_schedule[RW]

@return [String] replicationSchedule. Schedule

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_netapp/models/replication_object.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'replicationObject',
    type: {
      name: 'Composite',
      class_name: 'ReplicationObject',
      model_properties: {
        replication_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'replicationId',
          type: {
            name: 'String'
          }
        },
        endpoint_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'endpointType',
          type: {
            name: 'String'
          }
        },
        replication_schedule: {
          client_side_validation: true,
          required: true,
          serialized_name: 'replicationSchedule',
          type: {
            name: 'String'
          }
        },
        remote_volume_resource_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'remoteVolumeResourceId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end