checkmk-plugins/check_mk-storeonce/local/share/check_mk/agents/special/agent_storeonce

6702 lines
265 KiB
Python

#!/usr/bin/env python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# +------------------------------------------------------------------+
# | ____ _ _ __ __ _ __ |
# | / ___| |__ ___ ___| | __ | \/ | |/ / |
# | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
# | | |___| | | | __/ (__| < | | | | . \ |
# | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
# | |
# | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation in version 2. check_mk is distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more de-
# tails. You should have received a copy of the GNU General Public
# License along with GNU Make; see the file COPYING. If not, write
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301 USA.
import re
import sys, getopt
import requests
import xml.etree.ElementTree as ET
from requests.packages.urllib3.exceptions import InsecureRequestWarning
def usage():
sys.stderr.write("""Check_MK StoreOnce
USAGE: agent_storeonce [OPTIONS] HOST
OPTIONS:
-h, --help Show this help message and exit
--address Host address
--user Username
--password Password
--no-cert-check Disable certificate check
""")
sys.exit(1)
short_options = "h"
long_options = ["help", "username=", "password=", "address=", "demo", "no-cert-check"]
try:
opts, args = getopt.getopt(sys.argv[1:], short_options, long_options)
except getopt.GetoptError, err:
sys.stderr.write("%s\n" % err)
sys.exit(1)
opt_demo = False
opt_cert = True
args_dict = {}
for o,a in opts:
if o in [ "--address" ]:
args_dict["address"] = a
elif o in [ "--username" ]:
args_dict["username"] = a
elif o in [ "--password" ]:
args_dict["password"] = a
elif o in [ "--demo" ]:
opt_demo = True
elif o in [ "--no-cert-check" ]:
opt_cert = False
elif o in [ "-h", "--help" ]:
usage()
def query(url):
if opt_cert == False:
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
response = requests.get(url, auth = (args_dict["username"], args_dict["password"]), verify=opt_cert)
raw_xml = response.text
# Remove namespace nonsense
raw_xml = re.sub(' xmlns="[^"]+"', '', raw_xml, count=1)
# raw_xml = re.sub(' http-equiv="[^"]+"', '', raw_xml, count=1)
xml_instance = ET.fromstring(raw_xml)
return xml_instance
output_lines = []
def output(line):
if type(line) not in [str, unicode]:
output_lines.append(pprint.pformat(line))
else:
output_lines.append(line)
def process_cluster_info():
output("<<<storeonce_clusterinfo:sep(9)>>>")
xml_instance = query_cluster_info()
tbody = xml_instance.find("body").find("div").find("table").find("tbody")
for child in tbody:
name = child[0].text
value = child[1].text
output("%s\t%s" % (name, value))
def query_cluster_info():
if opt_demo:
raw_xml = re.sub(' xmlns="[^"]+"', '', cluster_xml, count=1)
return ET.fromstring(raw_xml)
url = "https://%(address)s/storeonceservices/cluster/" % args_dict
return query(url)
serviceset_ids = set()
def process_servicesets():
output("<<<storeonce_servicesets:sep(9)>>>")
xml_instance = query_servicesets()
servicesets = xml_instance.find("body").find("div")
for element in servicesets:
tbody = element.find("table").find("tbody")
serviceset_id = tbody[0][1].text
serviceset_ids.add(serviceset_id)
output("[%s]" % serviceset_id)
for child in tbody:
name = child[0].text
value = child[1].text
output("%s\t%s" % (name, value))
def query_servicesets():
if opt_demo:
raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1)
return ET.fromstring(raw_xml)
url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict
return query(url)
def process_stores_info():
output("<<<storeonce_stores:sep(9)>>>")
for serviceset_id in serviceset_ids:
xml_instance = query_stores_info(serviceset_id)
stores = xml_instance.find("body").find("div")
for element in stores:
tbody = element.find("table").find("tbody")
store_id = tbody[0][1].text
output("[%s/%s]" % (serviceset_id, store_id))
serviceset_ids.add(serviceset_id)
for child in tbody:
name = child[0].text
value = child[1].text
output("%s\t%s" % (name, value))
def query_stores_info(serviceset_id):
if opt_demo:
raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml, count=1)
return ET.fromstring(raw_xml)
url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \
"%s/services/cat/stores/" % serviceset_id
return query(url)
serviceset_ids_teaming = set()
def process_servicesets_teaming():
output("<<<storeonce_servicesets_team:sep(9)>>>")
xml_instance = query_servicesets_teaming()
servicesets_teaming = xml_instance.find("body").find("div")
for element in servicesets_teaming:
tbody = element.find("table").find("tbody")
serviceset_id_teaming = tbody[0][1].text
serviceset_ids_teaming.add(serviceset_id_teaming)
output("[%s]" % serviceset_id_teaming)
for child in tbody:
name = child[0].text
value = child[1].text
output("%s\t%s" % (name, value))
def query_servicesets_teaming():
if opt_demo:
raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1)
return ET.fromstring(raw_xml)
url = "https://%(address)s/storeonceservices/cluster/servicesets/1/teaming/services/cat/stores" % args_dict
return query(url)
def process_stores_info_teaming():
output("<<<storeonce_stores_team:sep(9)>>>")
for serviceset_id_teaming in serviceset_ids_teaming:
xml_instance = query_stores_info_teaming(serviceset_id_teaming)
stores = xml_instance.find("body").find("div")
for element in stores:
tbody = element.find("table").find("tbody")
store_id = tbody[0][1].text
output("[%s/%s]" % (serviceset_id_teaming, store_id))
serviceset_ids_teaming.add(serviceset_id_teaming)
for child in tbody:
name = child[0].text
value = child[1].text
output("%s\t%s" % (name, value))
def query_stores_info_teaming(serviceset_id):
if opt_demo:
raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml_teaming, count=1)
return ET.fromstring(raw_xml)
url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \
"1/teaming/services/cat/stores/%s" % serviceset_id
return query(url)
def main():
try:
# All shares
url_path = "/storeonceservices/version"
servicesets = "/storeonceservices/cluster/servicesets"
# Get cluster info
process_cluster_info()
# Get servicesets
process_servicesets()
# Get stores info
process_stores_info()
process_servicesets_teaming()
process_stores_info_teaming()
sys.stdout.write("\n".join(output_lines) + "\n")
except Exception, e:
sys.stderr.write("Connection error: %s" % e)
sys.exit(1)
cluster_xml = \
"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>Information about D2D Clusters</title>
</head>
<body>
<div class="cluster">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName applianceName">Appliance Name</td>
<td class="propertyValue">hp9418820bda3c</td>
</tr>
<tr>
<td class="propertyName networkName">Network Name</td>
<td class="propertyValue">172.16.221.83</td>
</tr>
<tr>
<td class="propertyName serialNumber">Serial Number</td>
<td class="propertyValue">hp9418820bda3c</td>
</tr>
<tr>
<td class="propertyName softwareVersion">Software Version</td>
<td class="propertyValue">3.16.3-1730.1</td>
</tr>
<tr>
<td class="propertyName productClass">Product Class</td>
<td class="propertyValue">HPE StoreOnce 6600 System</td>
</tr>
<tr>
<td class="propertyName capacity">Total Capacity</td>
<td class="propertyValue">546885.56803687</td>
</tr>
<tr>
<td class="propertyName freeSpace">Free Space</td>
<td class="propertyValue">135188.67951616</td>
</tr>
<tr>
<td class="propertyName userDataStored">User Data Stored</td>
<td class="propertyValue">2538629.3860592</td>
</tr>
<tr>
<td class="propertyName sizeOnDisk">Size On Disk</td>
<td class="propertyValue">378247.887631381</td>
</tr>
<tr>
<td class="propertyName capacityBytes">Total Capacity (bytes)</td>
<td class="propertyValue numeric">546885568036864</td>
</tr>
<tr>
<td class="propertyName freeBytes">Free Space (bytes)</td>
<td class="propertyValue numeric">135188679516160</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored (bytes)</td>
<td class="propertyValue numeric">2538629386059199</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk (bytes)</td>
<td class="propertyValue numeric">378247887631375</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">6.71154940733788</td>
</tr>
<tr>
<td class="propertyName healthLevel">Cluster Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Cluster Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">Cluster Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName repHealthLevel">Replication Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName repHealth">Replication Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName repStatus">Replication Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName uptimeSeconds">Uptime Seconds</td>
<td class="propertyValue">867700</td>
</tr>
<tr>
<td class="propertyName sysContact">sysContact</td>
<td class="propertyValue">emailo@example.com</td>
</tr>
<tr>
<td class="propertyName sysLocation">sysLocation</td>
<td class="propertyValue">RandomLocation</td>
</tr>
<tr>
<td class="propertyName isMixedCluster">isMixedCluster</td>
<td class="propertyValue">false</td>
</tr>
</tbody>
</table>
<table class="servicesets">
<caption>Service Sets</caption>
<thead>
<tr>
<th>ID</th>
<th>Health</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ssid">1</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="detailUrl">/cluster/servicesets/1</td>
</tr>
<tr>
<td class="ssid">2</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="detailUrl">/cluster/servicesets/2</td>
</tr>
<tr>
<td class="ssid">3</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="detailUrl">/cluster/servicesets/3</td>
</tr>
<tr>
<td class="ssid">4</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="detailUrl">/cluster/servicesets/4</td>
</tr>
</tbody>
</table>
</div>
</body></html>"""
servicesets_xml = \
"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>List of D2D Service Sets</title>
</head>
<body>
<div class="servicesets">
<div class="serviceset">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName name">ServiceSet Name</td>
<td class="propertyValue">Service Set 1</td>
</tr>
<tr>
<td class="propertyName alias">ServiceSet Alias</td>
<td class="propertyValue">SET1</td>
</tr>
<tr>
<td class="propertyName serialNumber">Serial Number</td>
<td class="propertyValue">hp9418820bda3c01</td>
</tr>
<tr>
<td class="propertyName softwareVersion">Software Version</td>
<td class="propertyValue">3.16.3-1730.1</td>
</tr>
<tr>
<td class="propertyName productClass">Product Class</td>
<td class="propertyValue">HPE StoreOnce 6600 System</td>
</tr>
<tr>
<td class="propertyName capacityBytes">Capacity in bytes</td>
<td class="propertyValue numeric">410164176027648</td>
</tr>
<tr>
<td class="propertyName freeBytes">Free Space in bytes</td>
<td class="propertyValue numeric">99619047624704</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored in bytes</td>
<td class="propertyValue numeric">904317392528578</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk in bytes</td>
<td class="propertyValue numeric">124907442222240</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Deduplication Ratio</td>
<td class="propertyValue">7.2399000126796</td>
</tr>
<tr>
<td class="propertyName healthLevel">ServiceSet Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">ServiceSet Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">ServiceSet Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName repHealthLevel">Replication Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName repHealth">Replication Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName repStatus">Replication Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName overallHealthLevel">Overall Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName overallHealth">Overall Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName overallStatus">Overall Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName housekeepingHealthLevel">Housekeeping Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName housekeepingHealth">Housekeeping Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName housekeepingStatus">Housekeeping Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName primaryNode">Primary Node</td>
<td class="propertyValue">hp18820bda3c-1</td>
</tr>
<tr>
<td class="propertyName secondaryNode">Secondary Node</td>
<td class="propertyValue">hp18820bda3c-2</td>
</tr>
<tr>
<td class="propertyName activeNode">Active Node</td>
<td class="propertyValue">hp18820bda3c-1</td>
</tr>
</tbody>
</table>
<table class="ipaddresses">
<caption>IP Addresses</caption>
<thead>
<tr>
<th>IP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ip">192.168.21.57</td>
</tr>
</tbody>
</table>
<table class="statusnotes">
<caption>Status Notes</caption>
<thead>
<tr>
<th>Message</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table class="services">
<caption>Services</caption>
<thead>
<tr>
<th>Type</th>
<th>Health</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="id">VTL</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/1/services/vtl</td>
</tr>
<tr>
<td class="id">NAS</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/1/services/nas</td>
</tr>
<tr>
<td class="id">CAT</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/1/services/cat</td>
</tr>
<tr>
<td class="id">REP</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/1/services/rep</td>
</tr>
<tr>
<td class="id">RMC</td>
<td class="summaryHealthLevel numeric">-1</td>
<td class="url">/cluster/servicesets/1/services/rmc</td>
</tr>
</tbody>
</table>
</div>
<div class="serviceset">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue">2</td>
</tr>
<tr>
<td class="propertyName name">ServiceSet Name</td>
<td class="propertyValue">Service Set 2</td>
</tr>
<tr>
<td class="propertyName alias">ServiceSet Alias</td>
<td class="propertyValue">SET2</td>
</tr>
<tr>
<td class="propertyName serialNumber">Serial Number</td>
<td class="propertyValue">hp9418820bda3c02</td>
</tr>
<tr>
<td class="propertyName softwareVersion">Software Version</td>
<td class="propertyValue">3.16.3-1730.1</td>
</tr>
<tr>
<td class="propertyName productClass">Product Class</td>
<td class="propertyValue">HPE StoreOnce 6600 System</td>
</tr>
<tr>
<td class="propertyName capacityBytes">Capacity in bytes</td>
<td class="propertyValue numeric">410164176027648</td>
</tr>
<tr>
<td class="propertyName freeBytes">Free Space in bytes</td>
<td class="propertyValue numeric">99619047624704</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored in bytes</td>
<td class="propertyValue numeric">1254087068152264</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk in bytes</td>
<td class="propertyValue numeric">160865344265245</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Deduplication Ratio</td>
<td class="propertyValue">7.7958809206565</td>
</tr>
<tr>
<td class="propertyName healthLevel">ServiceSet Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">ServiceSet Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">ServiceSet Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName repHealthLevel">Replication Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName repHealth">Replication Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName repStatus">Replication Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName overallHealthLevel">Overall Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName overallHealth">Overall Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName overallStatus">Overall Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName housekeepingHealthLevel">Housekeeping Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName housekeepingHealth">Housekeeping Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName housekeepingStatus">Housekeeping Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName primaryNode">Primary Node</td>
<td class="propertyValue">hp18820bda3c-2</td>
</tr>
<tr>
<td class="propertyName secondaryNode">Secondary Node</td>
<td class="propertyValue">hp18820bda3c-1</td>
</tr>
<tr>
<td class="propertyName activeNode">Active Node</td>
<td class="propertyValue">hp18820bda3c-2</td>
</tr>
</tbody>
</table>
<table class="ipaddresses">
<caption>IP Addresses</caption>
<thead>
<tr>
<th>IP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ip">192.168.21.58</td>
</tr>
</tbody>
</table>
<table class="statusnotes">
<caption>Status Notes</caption>
<thead>
<tr>
<th>Message</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table class="services">
<caption>Services</caption>
<thead>
<tr>
<th>Type</th>
<th>Health</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="id">VTL</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/2/services/vtl</td>
</tr>
<tr>
<td class="id">NAS</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/2/services/nas</td>
</tr>
<tr>
<td class="id">CAT</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/2/services/cat</td>
</tr>
<tr>
<td class="id">REP</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/2/services/rep</td>
</tr>
<tr>
<td class="id">RMC</td>
<td class="summaryHealthLevel numeric">-1</td>
<td class="url">/cluster/servicesets/2/services/rmc</td>
</tr>
</tbody>
</table>
</div>
<div class="serviceset">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue">3</td>
</tr>
<tr>
<td class="propertyName name">ServiceSet Name</td>
<td class="propertyValue">Service Set 3</td>
</tr>
<tr>
<td class="propertyName alias">ServiceSet Alias</td>
<td class="propertyValue">SET3</td>
</tr>
<tr>
<td class="propertyName serialNumber">Serial Number</td>
<td class="propertyValue">hp9418820bda3c03</td>
</tr>
<tr>
<td class="propertyName softwareVersion">Software Version</td>
<td class="propertyValue">3.16.3-1730.1</td>
</tr>
<tr>
<td class="propertyName productClass">Product Class</td>
<td class="propertyValue">HPE StoreOnce 6600 System</td>
</tr>
<tr>
<td class="propertyName capacityBytes">Capacity in bytes</td>
<td class="propertyValue numeric">136721392009216</td>
</tr>
<tr>
<td class="propertyName freeBytes">Free Space in bytes</td>
<td class="propertyValue numeric">35627477028864</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored in bytes</td>
<td class="propertyValue numeric">119078700209780</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk in bytes</td>
<td class="propertyValue numeric">25923599485491</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Deduplication Ratio</td>
<td class="propertyValue">4.5934477685642</td>
</tr>
<tr>
<td class="propertyName healthLevel">ServiceSet Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">ServiceSet Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">ServiceSet Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName repHealthLevel">Replication Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName repHealth">Replication Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName repStatus">Replication Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName overallHealthLevel">Overall Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName overallHealth">Overall Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName overallStatus">Overall Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName housekeepingHealthLevel">Housekeeping Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName housekeepingHealth">Housekeeping Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName housekeepingStatus">Housekeeping Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName primaryNode">Primary Node</td>
<td class="propertyValue">hp18820bda3c-3</td>
</tr>
<tr>
<td class="propertyName secondaryNode">Secondary Node</td>
<td class="propertyValue">hp18820bda3c-4</td>
</tr>
<tr>
<td class="propertyName activeNode">Active Node</td>
<td class="propertyValue">hp18820bda3c-3</td>
</tr>
</tbody>
</table>
<table class="ipaddresses">
<caption>IP Addresses</caption>
<thead>
<tr>
<th>IP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ip">192.168.21.17</td>
</tr>
</tbody>
</table>
<table class="statusnotes">
<caption>Status Notes</caption>
<thead>
<tr>
<th>Message</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table class="services">
<caption>Services</caption>
<thead>
<tr>
<th>Type</th>
<th>Health</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="id">VTL</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/3/services/vtl</td>
</tr>
<tr>
<td class="id">NAS</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/3/services/nas</td>
</tr>
<tr>
<td class="id">CAT</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/3/services/cat</td>
</tr>
<tr>
<td class="id">REP</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/3/services/rep</td>
</tr>
<tr>
<td class="id">RMC</td>
<td class="summaryHealthLevel numeric">-1</td>
<td class="url">/cluster/servicesets/3/services/rmc</td>
</tr>
</tbody>
</table>
</div>
<div class="serviceset">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue">4</td>
</tr>
<tr>
<td class="propertyName name">ServiceSet Name</td>
<td class="propertyValue">Service Set 4</td>
</tr>
<tr>
<td class="propertyName alias">ServiceSet Alias</td>
<td class="propertyValue">SET4</td>
</tr>
<tr>
<td class="propertyName serialNumber">Serial Number</td>
<td class="propertyValue">hp9418820bda3c04</td>
</tr>
<tr>
<td class="propertyName softwareVersion">Software Version</td>
<td class="propertyValue">3.16.3-1730.1</td>
</tr>
<tr>
<td class="propertyName productClass">Product Class</td>
<td class="propertyValue">HPE StoreOnce 6600 System</td>
</tr>
<tr>
<td class="propertyName capacityBytes">Capacity in bytes</td>
<td class="propertyValue numeric">136721392009216</td>
</tr>
<tr>
<td class="propertyName freeBytes">Free Space in bytes</td>
<td class="propertyValue numeric">35627513688064</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored in bytes</td>
<td class="propertyValue numeric">250824989076919</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk in bytes</td>
<td class="propertyValue numeric">66519153888797</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Deduplication Ratio</td>
<td class="propertyValue">3.7707182730591</td>
</tr>
<tr>
<td class="propertyName healthLevel">ServiceSet Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">ServiceSet Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">ServiceSet Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName repHealthLevel">Replication Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName repHealth">Replication Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName repStatus">Replication Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName overallHealthLevel">Overall Health Level</td>
<td class="propertyValue">1</td>
</tr>
<tr>
<td class="propertyName overallHealth">Overall Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName overallStatus">Overall Status</td>
<td class="propertyValue">Running</td>
</tr>
<tr>
<td class="propertyName housekeepingHealthLevel">Housekeeping Health Level</td>
<td class="propertyValue">4</td>
</tr>
<tr>
<td class="propertyName housekeepingHealth">Housekeeping Health</td>
<td class="propertyValue">Critical</td>
</tr>
<tr>
<td class="propertyName housekeepingStatus">Housekeeping Status</td>
<td class="propertyValue">Not complete for &gt;7 days</td>
</tr>
<tr>
<td class="propertyName primaryNode">Primary Node</td>
<td class="propertyValue">hp18820bda3c-4</td>
</tr>
<tr>
<td class="propertyName secondaryNode">Secondary Node</td>
<td class="propertyValue">hp18820bda3c-3</td>
</tr>
<tr>
<td class="propertyName activeNode">Active Node</td>
<td class="propertyValue">hp18820bda3c-4</td>
</tr>
</tbody>
</table>
<table class="ipaddresses">
<caption>IP Addresses</caption>
<thead>
<tr>
<th>IP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ip">192.168.21.18</td>
</tr>
</tbody>
</table>
<table class="statusnotes">
<caption>Status Notes</caption>
<thead>
<tr>
<th>Message</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table class="services">
<caption>Services</caption>
<thead>
<tr>
<th>Type</th>
<th>Health</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td class="id">VTL</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/4/services/vtl</td>
</tr>
<tr>
<td class="id">NAS</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/4/services/nas</td>
</tr>
<tr>
<td class="id">CAT</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/4/services/cat</td>
</tr>
<tr>
<td class="id">REP</td>
<td class="summaryHealthLevel numeric">1</td>
<td class="url">/cluster/servicesets/4/services/rep</td>
</tr>
<tr>
<td class="id">RMC</td>
<td class="summaryHealthLevel numeric">-1</td>
<td class="url">/cluster/servicesets/4/services/rmc</td>
</tr>
</tbody>
</table>
</div>
</div>
</body></html>"""
stores_xml = \
"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>List of CAT Stores</title>
</head>
<body>
<div class="stores">
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue numeric">12</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">Veeam_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Veeam Store Cj</td>
</tr>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName creationTimeUTC">Creation Time UTC</td>
<td class="propertyValue numeric">1485955332</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName numberOfCatalystItems">Number Of Catalyst Items</td>
<td class="propertyValue numeric">2463</td>
</tr>
<tr>
<td class="propertyName userdatastored">User Data Stored</td>
<td class="propertyValue">70979.755813674</td>
</tr>
<tr>
<td class="propertyName sizeondisk">Size On Disk</td>
<td class="propertyValue">22185.19110316</td>
</tr>
<tr>
<td class="propertyName deduperatio">Dedupe Ratio</td>
<td class="propertyValue">3.1</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">3.1</td>
</tr>
<tr>
<td class="propertyName created">Creation On</td>
<td class="propertyValue">2017-02-01T13:22:12Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modified</td>
<td class="propertyValue">2017-12-19T13:30:30Z</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">High Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">High Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">45000000000000</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName userBytes">userBytes</td>
<td class="propertyValue numeric">70979755813674</td>
</tr>
<tr>
<td class="propertyName diskBytes">diskBytes</td>
<td class="propertyValue numeric">22185191103160</td>
</tr>
<tr>
<td class="propertyName numItems">numItems</td>
<td class="propertyValue numeric">2463</td>
</tr>
<tr>
<td class="propertyName numDataJobs">numDataJobs</td>
<td class="propertyValue numeric">1397432</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">numOriginCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">numDestinationCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName isOnline">Is online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName teamUUID">teamUUID</td>
<td class="propertyValue">00000159F9D6FA6A6A1CA953F239138C</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">0</td>
</tr>
</tbody>
</table>
<table class="dedupeStore">
<caption>Dedupe Store</caption>
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">dedupe Store Id</td>
<td class="propertyValue numeric">12</td>
</tr>
<tr>
<td class="propertyName url">dedupe Store URI</td>
<td class="propertyValue">/cluster/servicesets/1/services/dedupe/stores/12</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue numeric">24</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">RMCV_3</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Backup Farm1 - Impar DS</td>
</tr>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName creationTimeUTC">Creation Time UTC</td>
<td class="propertyValue numeric">1508826923</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName numberOfCatalystItems">Number Of Catalyst Items</td>
<td class="propertyValue numeric">198</td>
</tr>
<tr>
<td class="propertyName userdatastored">User Data Stored</td>
<td class="propertyValue">316056.79915008</td>
</tr>
<tr>
<td class="propertyName sizeondisk">Size On Disk</td>
<td class="propertyValue">22746.153432612</td>
</tr>
<tr>
<td class="propertyName deduperatio">Dedupe Ratio</td>
<td class="propertyValue">13.8</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">13.8</td>
</tr>
<tr>
<td class="propertyName created">Creation On</td>
<td class="propertyValue">2017-10-24T06:35:23Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modified</td>
<td class="propertyValue">2017-10-24T06:35:23Z</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName userBytes">userBytes</td>
<td class="propertyValue numeric">316056799150080</td>
</tr>
<tr>
<td class="propertyName diskBytes">diskBytes</td>
<td class="propertyValue numeric">22746153432612</td>
</tr>
<tr>
<td class="propertyName numItems">numItems</td>
<td class="propertyValue numeric">198</td>
</tr>
<tr>
<td class="propertyName numDataJobs">numDataJobs</td>
<td class="propertyValue numeric">4072</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">numOriginCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">numDestinationCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName isOnline">Is online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName teamUUID">teamUUID</td>
<td class="propertyValue">0000015F4D17C1B1C02D82884D9DEB04</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">0</td>
</tr>
</tbody>
</table>
<table class="dedupeStore">
<caption>Dedupe Store</caption>
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">dedupe Store Id</td>
<td class="propertyValue numeric">24</td>
</tr>
<tr>
<td class="propertyName url">dedupe Store URI</td>
<td class="propertyValue">/cluster/servicesets/1/services/dedupe/stores/24</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">RMC-2</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Bk DS par Farm1 </td>
</tr>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName creationTimeUTC">Creation Time UTC</td>
<td class="propertyValue numeric">1519230199</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName numberOfCatalystItems">Number Of Catalyst Items</td>
<td class="propertyValue numeric">252</td>
</tr>
<tr>
<td class="propertyName userdatastored">User Data Stored</td>
<td class="propertyValue">274878.7523584</td>
</tr>
<tr>
<td class="propertyName sizeondisk">Size On Disk</td>
<td class="propertyValue">16489.135000816</td>
</tr>
<tr>
<td class="propertyName deduperatio">Dedupe Ratio</td>
<td class="propertyValue">16.6</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">16.6</td>
</tr>
<tr>
<td class="propertyName created">Creation On</td>
<td class="propertyValue">2018-02-21T16:23:19Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modified</td>
<td class="propertyValue">2018-02-21T16:23:19Z</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName userBytes">userBytes</td>
<td class="propertyValue numeric">274878752358400</td>
</tr>
<tr>
<td class="propertyName diskBytes">diskBytes</td>
<td class="propertyValue numeric">16489135000816</td>
</tr>
<tr>
<td class="propertyName numItems">numItems</td>
<td class="propertyValue numeric">252</td>
</tr>
<tr>
<td class="propertyName numDataJobs">numDataJobs</td>
<td class="propertyValue numeric">385</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">numOriginCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">numDestinationCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName isOnline">Is online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName teamUUID">teamUUID</td>
<td class="propertyValue">00000161B92D24EF0479D854AC17F2A1</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">0</td>
</tr>
</tbody>
</table>
<table class="dedupeStore">
<caption>Dedupe Store</caption>
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">dedupe Store Id</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName url">dedupe Store URI</td>
<td class="propertyValue">/cluster/servicesets/2/services/dedupe/stores/0</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">RMCV_2</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Bk DS par Farm1 </td>
</tr>
<tr>
<td class="propertyName ssid">ServiceSet ID</td>
<td class="propertyValue numeric">4</td>
</tr>
<tr>
<td class="propertyName creationTimeUTC">Creation Time UTC</td>
<td class="propertyValue numeric">1515400603</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">OK</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName numberOfCatalystItems">Number Of Catalyst Items</td>
<td class="propertyValue numeric">150</td>
</tr>
<tr>
<td class="propertyName userdatastored">User Data Stored</td>
<td class="propertyValue">109951.50094336</td>
</tr>
<tr>
<td class="propertyName sizeondisk">Size On Disk</td>
<td class="propertyValue">37939.595676877</td>
</tr>
<tr>
<td class="propertyName deduperatio">Dedupe Ratio</td>
<td class="propertyValue">2.8</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">2.8</td>
</tr>
<tr>
<td class="propertyName created">Creation On</td>
<td class="propertyValue">2018-01-08T08:36:43Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modified</td>
<td class="propertyValue">2018-01-10T17:42:31Z</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName userBytes">userBytes</td>
<td class="propertyValue numeric">109951500943360</td>
</tr>
<tr>
<td class="propertyName diskBytes">diskBytes</td>
<td class="propertyValue numeric">37939595676877</td>
</tr>
<tr>
<td class="propertyName numItems">numItems</td>
<td class="propertyValue numeric">150</td>
</tr>
<tr>
<td class="propertyName numDataJobs">numDataJobs</td>
<td class="propertyValue numeric">5682</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">numOriginCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">numDestinationCopyJobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName isOnline">Is online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName teamUUID">teamUUID</td>
<td class="propertyValue">00000160D4EA2623E071883475A9C682</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">0</td>
</tr>
</tbody>
</table>
<table class="dedupeStore">
<caption>Dedupe Store</caption>
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">dedupe Store Id</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName url">dedupe Store URI</td>
<td class="propertyValue">/cluster/servicesets/4/services/dedupe/stores/1</td>
</tr>
</tbody>
</table>
</div>
</div>
</body></html>"""
stores_xml_teaming = \
"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>List of Teamed Catalyst Stores</title>
</head>
<body>
<div class="stores">
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">000001594B2E65E914839B82279B14F9</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">FMS_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">FMS Databases</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T15:16:16Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-29T15:24:09Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">3291770368</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">19999172933</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.1</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">4</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">8532</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">000001597324803912EA0A157C1417FB</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">DW_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">DW database store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T13:49:01Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-01-06T09:38:09Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">589222895824</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015945C947CF9A1FC94A00F125D6</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">ORA_MEDIUM_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Databases between 500G and 5T</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T08:30:48Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-28T14:15:36Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">270638217491872</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">34990558346210</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">7.7</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">38007</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">198705</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">00000159452FFE91F1205D30624F6B3C</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">TICH_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Database TICH </td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-28T11:28:10Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-28T11:28:10Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">44315366129664</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">5093382800339</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">8.7</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">676</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">10410</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015945F8C5C599268A84E37AA602</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">ARPIN_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">ARPIN Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-28T15:07:28Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-28T16:18:57Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">94049009926144</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">19833399695183</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">4.7</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">128</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015973317C798AAC99334A7D9B20</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">HIST_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">HIST Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-01-06T09:52:20Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-01-06T09:52:20Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">53596324942208</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">7216835095879</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">7.4</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">605</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">7558</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015973BED8FB3CC26F2D92BCDF9B</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">FPM_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">FPM Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-01-06T12:26:44Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-01-06T12:26:44Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">100626128175104</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">5053181148644</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">19.9</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">3998</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">25638</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015FB4250FFD2B7EC4A788997A31</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">HDW_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">HDW database store </td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-02-06T07:21:07Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-11-13T06:50:49Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">2327326228480</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">320436576594</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">7.2</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">100</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015A1D361AE54FD9797A916443A6</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">MSSQL_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">MSSQL_Databases</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-02-08T10:12:49Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-02-08T10:12:49Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">177802201444531</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">5611464184724</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">31.6</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">92376</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">29898</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015A4B898B0978E39AC679C29E46</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">VAPP_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">VAPP Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-02-17T10:06:29Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-02-17T10:06:29Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">187145140043776</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">18788543090018</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">9.9</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">2044</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">5576</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015AA3140E1C5D696993051357B5</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">EBS_REP_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Clone de raportare 5 ani</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-03-06T10:04:45Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-03-06T10:04:45Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">213399862610176</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">12372722770821</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">17.2</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">3101</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">512</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015BA4F89B6636707BCDDE77EA11</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">EBS_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Federated Catalyst Store 1</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-04-25T11:56:47Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-04-25T11:56:47Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">19729734434816</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">2419616568861</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">8.1</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">1426</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">6564</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015BAF012DF2373CA9B9843943FD</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">SMS_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Federated Catalyst Store 1</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-04-27T10:42:21Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-04-27T10:42:21Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">23366172934144</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">4965345977854</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">4.7</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">846</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">3658</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015E99031583403621D41DF8AFC6</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">CTI_H_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">CTI_H_Store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-09-19T07:21:09Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-09-19T07:21:09Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">20744064</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015E99190C3A99B9B0C881B63B56</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">OBRM_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">OBRM_Store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-09-19T07:45:09Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-09-19T07:45:09Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">20744064</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015E9996AFD3CE23E46336B0C70D</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">RAID_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">RAID_Store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-09-19T10:02:23Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-09-19T10:02:23Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">20744064</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015E99981B974BD4B5DCE5CC6BA6</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">WEB_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">WEB_Store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-09-19T10:03:56Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-09-19T10:03:56Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">262144</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">34525176</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">4</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015F81A27366D19BF32D5D4F5E77</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">APIN_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">APIN_Store</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-11-03T11:27:08Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-11-03T11:27:08Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">20744064</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">0.0</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">000001597323CD6C6149489F03CA37DB</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">IFD_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">IFD Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-27T14:48:51Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-01-06T09:37:23Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">26330380641880</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">2199028454764</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">11.9</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">1014</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">8744</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">000001597325669A0D0E7FD228DA1F97</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">CDM_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">CDM_Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T13:46:57Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-01-06T09:39:08Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">107260177809408</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">25048121319933</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">4.2</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">20994</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">98341</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">000001594EF7D5561836FFC77521DEBB</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">ORA_SMALL_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">Databases less than 500G</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T08:31:44Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-30T09:03:02Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">85105315804864</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">8259472516886</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">10.3</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">53982</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">269827</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015944E75512FAF4DCE0C53B5042</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">DET_Store</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">DET Database</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2016-12-22T14:07:33Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2016-12-28T10:08:48Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">214529888044608</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">72369417590404</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">2.9</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">6293</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">36480</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">1,2</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
<div class="store">
<table class="properties">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="propertyName id">Store ID</td>
<td class="propertyValue">0000015D509C00246C15E5828450B053</td>
</tr>
<tr>
<td class="propertyName name">Name</td>
<td class="propertyValue">NDW_Store2</td>
</tr>
<tr>
<td class="propertyName description">Description</td>
<td class="propertyValue">NDW database Store 2</td>
</tr>
<tr>
<td class="propertyName created">Creation Time</td>
<td class="propertyValue">2017-07-17T12:53:07Z</td>
</tr>
<tr>
<td class="propertyName modified">Last Modification Time</td>
<td class="propertyValue">2017-07-17T12:53:07Z</td>
</tr>
<tr>
<td class="propertyName healthLevel">Health Level</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName health">Health</td>
<td class="propertyValue">Ok</td>
</tr>
<tr>
<td class="propertyName status">Status</td>
<td class="propertyValue">Online</td>
</tr>
<tr>
<td class="propertyName isOnline">Is Online</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName version">Version</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName userBytes">User Data Stored</td>
<td class="propertyValue numeric">293234243552299</td>
</tr>
<tr>
<td class="propertyName diskBytes">Size On Disk</td>
<td class="propertyValue numeric">64787183268532</td>
</tr>
<tr>
<td class="propertyName dedupeRatio">Dedupe Ratio</td>
<td class="propertyValue">4.5</td>
</tr>
<tr>
<td class="propertyName numItems">Number Of Items</td>
<td class="propertyValue numeric">2384</td>
</tr>
<tr>
<td class="propertyName numDataJobs">Number Of Data Jobs</td>
<td class="propertyValue numeric">50246</td>
</tr>
<tr>
<td class="propertyName numOriginCopyJobs">Number Of Outbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName numDestinationCopyJobs">Number Of Inbound Copy Jobs</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicy">primaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName primaryTransferPolicyString">primaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicy">secondaryTransferPolicy</td>
<td class="propertyValue numeric">1</td>
</tr>
<tr>
<td class="propertyName secondaryTransferPolicyString">secondaryTransferPolicyString</td>
<td class="propertyValue">Low Bandwidth</td>
</tr>
<tr>
<td class="propertyName userDataSizeLimitBytes">userDataSizeLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dedupedDataSizeOnDiskLimitBytes">dedupedDataSizeOnDiskLimitBytes</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName dataJobRetentionDays">dataJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName inboundCopyJobRetentionDays">inboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName outboundCopyJobRetentionDays">outboundCopyJobRetentionDays</td>
<td class="propertyValue numeric">90</td>
</tr>
<tr>
<td class="propertyName encryption">is store encrypted</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName secureEraseModeId">secure erase mode</td>
<td class="propertyValue numeric">0</td>
</tr>
<tr>
<td class="propertyName secureEraseModeDescription">secure erase mode description</td>
<td class="propertyValue">Secure_Erase_NoPassCount</td>
</tr>
<tr>
<td class="propertyName supportStorageModeVariableBlockDedupe">supportStorageModeVariableBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeFixedBlockDedupe">supportStorageModeFixedBlockDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportStorageModeNoDedupe">supportStorageModeNoDedupe</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportWriteSparse">supportWriteSparse</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportWriteInPlace">supportWriteInPlace</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportRawReadWrite">supportRawReadWrite</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectOpeners">supportMultipleObjectOpeners</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName supportMultipleObjectWrites">supportMultipleObjectWrites</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName supportCloneExtent">supportCloneExtent</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isTeamed">isTeamed</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName isDegraded">isDegraded</td>
<td class="propertyValue">false</td>
</tr>
<tr>
<td class="propertyName numTeamMembers">numTeamMembers</td>
<td class="propertyValue numeric">2</td>
</tr>
<tr>
<td class="propertyName teamMembers">teamMembers</td>
<td class="propertyValue">3,4</td>
</tr>
<tr>
<td class="propertyName noWriteTeamMembers">noWriteTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName offlineTeamMembers">offlineTeamMembers</td>
<td class="propertyValue"></td>
</tr>
<tr>
<td class="propertyName allowAddTeamMembers">allowAddTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRemoveTeamMembers">allowRemoveTeamMembers</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowDegradedOperation">allowDegradedOperation</td>
<td class="propertyValue">true</td>
</tr>
<tr>
<td class="propertyName allowRedundancy">allowRedundancy</td>
<td class="propertyValue">true</td>
</tr>
</tbody>
</table>
</div>
</div>
</body></html>"""
if __name__ == "__main__":
main()