DataCenterModel
A datacenter. Datacenters in App Orchestration are defined by networking:
- Datacenters can have lower bandwidth between them than what is available within a datacenter.
- Datacenters can have higher latency between them than what is available within a datacenter.
- Datacenters can have occasional network outages between them.
Datacenters typically map to geographical locations.
Properties
Name | Description | Additional information |
---|---|---|
Href | See Hypermedia. |
Type: String |
RelatedActions | See Hypermedia. |
Type: Array of RelationModel |
Id | ID of the datacenter. |
Type: String |
ChangeId |
Type: String |
|
DeleteState | See Deleting Objects. |
Type: ObjectDeleteState |
Name | Name of the datacenter. |
Type: String |
ShortName | See Short Names. |
Type: String |
Description | Description. |
Type: String |
Tags |
Type: Array of String |
|
CustomProperties |
Type: Array of CustomPropertyModel |
|
LicenseServerAddress | License server address (FQDN). |
Type: String |
LicenseServerAddressPort | License server port. |
Type: Number |
NetScalerGatewayAddress | NetScaler Gateway address to use for tenants who use a shared NetScaler Gateway in the datacenter. Only used if NetScaler Gateway support is enabled at a global level. |
Type: String |
NumDeliverySites | Number of delivery sites in the datacenter. |
Type: Number |
NumStoreFrontServerGroups | Number of StoreFront server groups in the datacenter. |
Type: Number |
NumSessionMachines | Number of session machines in the datacenter. |
Type: Number |
HealthSummary | Summary of health indicators related to the datacenter. |
Type: HealthSummaryModel |
Sample
application/json
{ "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" } ] } }