com.vmware.content

configuration_model

The configuration_model structure defines the global settings of the Content Library Service.
Representations:
{
    "automatic_sync_enabled"true,
    "automatic_sync_start_hour"10,
    "automatic_sync_stop_hour"10,
    "maximum_concurrent_item_syncs"10
}
<?xml version="1.0" ?>
<ns0:ConfigurationModel xmlns:ns0="http://vmware.com/content" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <automatic_sync_enabled>true</automatic_sync_enabled>
  <automatic_sync_stop_hour>10</automatic_sync_stop_hour>
  <maximum_concurrent_item_syncs>10</maximum_concurrent_item_syncs>
  <automatic_sync_start_hour>10</automatic_sync_start_hour>
</ns0:ConfigurationModel>

Attributes:
Name Type Required Description
automatic_sync_enabled boolean Read Whether automatic synchronization is enabled.

When automatic synchronization is enabled, the Content Library Service will automatically synchronize all subscribed libraries on a daily basis. Subscribed libraries with the com.vmware.content.library.subscription_info.automatic_sync_enabled flag turned on will be synchronized every hour between com.vmware.content.configuration_model.automatic_sync_start_hour and com.vmware.content.configuration_model.automatic_sync_stop_hour.

automatic_sync_start_hour long Read The hour at which the automatic synchronization will start. This value is between 0 (midnight) and 23 inclusive.
automatic_sync_stop_hour long Read The hour at which the automatic synchronization will stop. Any active synchronization operation will continue to run, however no new synchronization operations will be triggered after the stop hour. This value is between 0 (midnight) and 23 inclusive.
maximum_concurrent_item_syncs long Read The maximum allowed number of library items to synchronize concurrently from remote libraries. This must be a positive number. The service may not be able to guarantee the requested concurrency if there is no available capacity.

This setting is global across all subscribed libraries.

Copyright © 2014. All Rights Reserved.