ossdbtoolsservice/capabilities/connection_options/mysql_connection_options.py [33:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ),
    ConnectionOption(
        name='user',
        display_name='User name',
        description='Indicates the user ID to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_USER_NAME,
        is_identity=True,
        is_required=True,
        group_name='Security'
    ),
    ConnectionOption(
        name='password',
        display_name='Password',
        description='Indicates the password to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_PASSWORD,
        special_value_type=ConnectionOption.SPECIAL_VALUE_PASSWORD_NAME,
        is_identity=True,
        is_required=True,
        group_name='Security'
    ),
    ConnectionOption(
        name='azureAccountToken',
        display_name='Access Token',
        description='Indicates an Active Directory access token to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_ACCESS_TOKEN,
        special_value_type=ConnectionOption.SPECIAL_VALUE_ACCESS_TOKEN_NAME,
        is_identity=True,
        is_required=False,
        group_name='Security'
    ),
    ConnectionOption(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ossdbtoolsservice/capabilities/connection_options/pg_connection_options.py [34:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ),
    ConnectionOption(
        name='user',
        display_name='User name',
        description='Indicates the user ID to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_USER_NAME,
        is_identity=True,
        is_required=True,
        group_name='Security'
    ),
    ConnectionOption(
        name='password',
        display_name='Password',
        description='Indicates the password to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_PASSWORD,
        special_value_type=ConnectionOption.SPECIAL_VALUE_PASSWORD_NAME,
        is_identity=True,
        is_required=True,
        group_name='Security'
    ),
    ConnectionOption(
        name='azureAccountToken',
        display_name='Access Token',
        description='Indicates an Active Directory access token to be used when connecting to the data source',
        value_type=ConnectionOption.VALUE_TYPE_ACCESS_TOKEN,
        special_value_type=ConnectionOption.SPECIAL_VALUE_ACCESS_TOKEN_NAME,
        is_identity=True,
        is_required=False,
        group_name='Security'
    ),
    ConnectionOption(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



