Replication arguments for Ranger services. It's replicated the following way:
| name | data type | description | 
|---|---|---|
| sourceRangerService | ApiServiceRef | The source service to replicate from. | 
| exportArgs | ApiRangerReplicationExportArgs | Replication arguments for the EXPORT operation. | 
| transformArgs | ApiRangerReplicationTransformArgs | Replication arguments for the TRANSFORM operation. | 
| importArgs | ApiRangerReplicationImportArgs | Replication arguments for the IMPORT operation. | 
Example
{
  "sourceRangerService" : {
    "peerName" : "...",
    "clusterName" : "...",
    "serviceName" : "...",
    "serviceDisplayName" : "...",
    "serviceType" : "..."
  },
  "exportArgs" : {
    "rangerServiceNames" : [ "...", "..." ]
  },
  "transformArgs" : {
    "rangerServiceNamesMapping" : {
      "property1" : "...",
      "property2" : "..."
    },
    "rangerUsersMapping" : {
      "property1" : "...",
      "property2" : "..."
    },
    "rangerResourcesMapping" : {
      "property1" : "...",
      "property2" : "..."
    }
  },
  "importArgs" : {
    "importStrategy" : "OVERRIDE"
  }
}