Get Client Configuration Operation
(for database)


  • It is recommended to first refer to the client-configuration description in the put client-configuration article.

  • Use GetClientConfigurationOperation to get the current client-configuration set on the server for the database.

  • In this page:


Get client-configuration

// Define the get client-configuration operation 
const getClientConfigOp = new GetClientConfigurationOperation();

// Execute the operation by passing it to maintenance.send
const result = await store.maintenance.send(getClientConfigOp);

const configuration = result.configuration;

Syntax

const getClientConfigOp = new GetClientConfigurationOperation();

// Object returned from store.maintenance.send(getClientConfigOp):
{
   etag,
   configuration // The configution object
}

// The configuration object:
{
    identityPartsSeparator,
    etag,
    disabled,
    maxNumberOfRequestsPerSession,
    readBalanceBehavior,
    loadBalanceBehavior,
    loadBalancerContextSeed
}