CreateDataCenterModel
Details for creating a datacenter.
Properties
Name | Description | Additional information |
---|---|---|
Name | Name of the datacenter to create. Must be unique. Required. |
Type: String |
ShortName | Short name of the new datacenter. Must be unique. Optional. See Short Names. |
Type: String |
Description | Description. Optional. |
Type: String |
Tags |
Type: Array of String |
|
CustomProperties |
Type: Array of CustomPropertyModel |
|
LicenseServerAddress | License server address for the datacenter. If not specified, the license server specified for the primary default datacenter will be used. This is required when adding the first datacenter. |
Type: String |
LicenseServerAddressPort | License server address port for the datacenter. If not specified, the license server address port specified for the primary default datacenter will be used. When adding the first datacenter, the default is 27000. |
Type: Number |
NetScalerGatewayAddress | The address of the NetScaler Gateway to use for tenants in the datacenter who use a shared NetScaler Gateway. Only used if NetScaler Gateway is enabled at a global level. If not specified, the NetScaler Gateway address will follow the pattern: https://ag.(ShortName).(ExternalDNSSuffix) For example, if the ShortName is "dc1" and the ExternalDNSSuffix (in global settings) is "csp.com" then the default value will be: https://ag.dc1.csp.com |
Type: String |
Sample
application/json
{ "Name": "datacenter1", "ShortName": "datacenter1", "Description": "my datacenter", "Tags": [ "tag" ], "CustomProperties": [ { "Name": "myProperty", "Value": "myValue" } ], "LicenseServerAddress": "ctxlicense.csp.com", "LicenseServerAddressPort": 27000, "NetScalerGatewayAddress": "https://ag.datacenter1.csp.com" }