Skip to main content
Version: v5.1

Analytics DB Creator

Overview#

The Analytics DB Creator allows you to create an analytics database with a set of parameters.

How to use the Analytics DB Creator#

To use the Analytics DB Creator, pass an object with the parameters you require, from the schema table listed below. Also refer to the code sample listed below.

Analytics DB Creator schema#

PropertyTypeDescriptionRequired
_orchcompStringEnter “create_analytics_db”.Required
_nameStringEnter a descriptive name for what the component does in the orchestrator.Optional
_sequencenoIntegerEnter a number that defines the task’s order in the sequence of tasks to execute.Required
_actualparamsObjectPass an object that contains formal parameters or alternative parameters you want to add as key-value pairs, such as “userType”: “<your-user-type>”.Optional
_actualparams.usernameStringTakes the username as a string.Required
_actualparams.passwordStringTakes the password as a string.Required
_actualparams.RWUserStringTakes the __ username as a string.Optional
_actualparams.RWPasswordStringTakes the __ password as a string.Optional

Code example#

Refer to the code sample below.

  {    "_orchcomp": "create_analytics_db",     "_name": "Creates analytics database",     "_sequenceno": 1,     "_actualparams": {        "username": "johnDoe",        "password": "secret",         "RWUser": "",        "RWPassword": ""    }  },