UpdateGlobalSettingsModel

Updated global settings.

Properties

NameDescription Additional information
GuidedSetupState

Tracks the state of dashboard guided setup. The caller can change this to cause the user interface to show or hide the guided setup dashboard.

Type: GuidedSetupState

TaskHistoryLimitDays

Number of days to store task history. A value of zero means no limit.

Type: Number

IsNetworkIsolationEnabled

If true, App Orchestration will enforce network isolation boundaries for all machines under its control.

Note that changing this value will not affect any machines that have already been allocated, but will have an effect on future machine allocation. Any machines that have already been imported and do not have an associated management network will never be allocated if network isolation is later enabled.

Type: Boolean

SharedControllerManagementNetwork

Delivery controller machines in all shared delivery sites, and StoreFront servers in all shared StoreFront server groups, must be connected to this management network. The default is 'Shared Controller Management Network'.

Note: This value is only used if IsNetworkIsolationEnabled is true.

Type: String

SharedDeliveryGroupManagementNetwork

All shared session machines must be connected to this management network. The default is 'Shared Delivery Group Management Network'.

Note: This value is only used if IsNetworkIsolationEnabled is true.

Type: String

OtherSharedDeliveryGroupNetworks

Additional networks which are attached to all shared session machines that are automatically created using integrated provisioning.

Type: Array of String

DefaultSecureIcaRequired

Default value for the SecureIcaRequired property when creating a new SessionMachineCatalog.

Type: Boolean

DefaultPrimaryDataCenterId

The ID of the primary and default datacenter. All configuration servers must reside in this datacenter, and any operation where datacenter is requested but not provided will assume this datacenter.

Type: String

IsNetScalerGatewayEnabled

Enables tenants to access a shared NetScaler Gateway in each data center. Each datacenter must contain a NetScaler Gateway when this feature is enabled.

Type: Boolean

IsAacEnabled

Enables Advanced Access Control on the shared NetScaler Gateway in each datacenter.

Type: Boolean

AacFarmName

Farm name used for Advanced Access Control, for tenants using a shared NetScaler Gateway.

Type: String

ProductDepot

Network file share containing installation software for your deployment. App Orchestration uses this location when installing software on remote machines.

Type: String

ProductDepotUserName

Account used to access the product depot from remote machines. Configure with read-only permissions to the product depot.

Type: String

ProductDepotPasswordBase64

Account password for the ProductDepotUserName. Must be Base64 encoded.

Type: String

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Sample

application/json

Sample:
{
  "GuidedSetupState": "GuidedSetupComplete",
  "TaskHistoryLimitDays": 1,
  "IsNetworkIsolationEnabled": true,
  "SharedControllerManagementNetwork": "Shared Controller Management Network",
  "SharedDeliveryGroupManagementNetwork": "Shared Delivery Group Management Network",
  "OtherSharedDeliveryGroupNetworks": [
    "other network"
  ],
  "DefaultSecureIcaRequired": true,
  "DefaultPrimaryDataCenterId": "af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a",
  "IsNetScalerGatewayEnabled": true,
  "IsAacEnabled": true,
  "AacFarmName": "Shared",
  "ProductDepot": "\\\\server\\share\\ProductDepot",
  "ProductDepotUserName": "DOMAIN\\user",
  "ProductDepotPasswordBase64": "cGFzc3dvcmQ=",
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ]
}