n8n/packages/nodes-base/credentials/CrateDb.credentials.ts

71 lines
1.1 KiB
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-07-17 07:10:31 -07:00
export class CrateDb implements ICredentialType {
name = 'crateDb';
displayName = 'CrateDB';
documentationUrl = 'crateDb';
properties: INodeProperties[] = [
2020-07-17 07:10:31 -07:00
{
displayName: 'Host',
name: 'host',
type: 'string',
2020-07-17 07:10:31 -07:00
default: 'localhost',
},
{
displayName: 'Database',
name: 'database',
type: 'string',
2020-07-17 07:10:31 -07:00
default: 'doc',
},
{
displayName: 'User',
name: 'user',
type: 'string',
2020-07-17 07:10:31 -07:00
default: 'crate',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
2020-07-17 07:10:31 -07:00
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'SSL',
name: 'ssl',
type: 'options',
2020-07-17 07:10:31 -07:00
options: [
{
name: 'disable',
value: 'disable',
},
{
name: 'allow',
value: 'allow',
},
{
name: 'require',
value: 'require',
},
{
name: 'verify (not implemented)',
value: 'verify',
},
{
name: 'verify-full (not implemented)',
value: 'verify-full',
},
],
default: 'disable',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
2020-07-17 07:10:31 -07:00
default: 5432,
},
];
}