replication list

NAME

replication list - List remote destination information.

SYNOPSIS

ssh -p 29418 * replication list
  [--remote <PATTERN>]
  [--detail]
  [--json]

DESCRIPTION

Lists the name and URL for remote destinations.

ACCESS

Caller must be a member of the privileged ‘Administrators’ group.

SCRIPTING

This command is intended to be used in scripts.

OPTIONS

--remote <PATTERN>
Only print information for destinations whose remote name matches the PATTERN.
--detail
Print additional detailed information: AdminUrl, AuthGroup, Project and queue (pending and in-flight).
--json
Output in json format.

EXAMPLES

List all destinations:

  $ ssh -p 29418 * replication list

List all destinations detail information:

  $ ssh -p 29418 * replication list --detail

List all destinations detail information in json format:

  $ ssh -p 29418 * replication list --detail --json

List destinations whose name contains mirror:

  $ ssh -p 29418 * replication list --remote mirror
  $ ssh -p 29418 * replication list --remote ^.*mirror.*

SEE ALSO