CollectionResultModel<DataCenterModel>
A collection of items.
Properties
Name | Description | Additional information |
---|---|---|
Href | See Hypermedia. |
Type: String |
RelatedActions | See Hypermedia. |
Type: Array of RelationModel |
Count | Number of items in the returned collection. See Object Counts. |
Type: Number |
TotalMatchingFilter | The total number of items that matched the specified filter. This may be larger than the number of items returned, if the caller specified "take" and/or "skip" parameters. See Object Counts. |
Type: Number |
Items | The items. |
Type: Array of DataCenterModel |
Sample
application/json
Sample:
{ "Count": 1, "TotalMatchingFilter": 1, "Items": [ { "Href": "[api:DataCenters(af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a)]", "Id": "af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a", "ChangeId": "4", "DeleteState": "NotDeleted", "Name": "datacenter1", "ShortName": "datacenter1", "Description": "My datacenter", "Tags": [ "tag" ], "CustomProperties": [ { "Name": "myProperty", "Value": "myValue" } ], "LicenseServerAddress": "ctxlicense.mydomain.com", "LicenseServerAddressPort": 27000, "NetScalerGatewayAddress": "https://ag.datacenter1.mydomain.com", "NumDeliverySites": 2, "NumStoreFrontServerGroups": 5, "NumSessionMachines": 1000, "HealthSummary": { "InfoCount": 1, "Messages": [ { "Text": "Attempting to reach desired capacity", "IsActive": true, "Type": "Allocation" } ] } } ] }