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

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
import {
ICredentialType,
INodeProperties,
2019-06-23 03:35:23 -07:00
} from 'n8n-workflow';
export class GoogleApi implements ICredentialType {
name = 'googleApi';
displayName = 'Google API';
documentationUrl = 'google';
properties: INodeProperties[] = [
2019-06-23 03:35:23 -07:00
{
displayName: 'Service Account Email',
2019-06-23 03:35:23 -07:00
name: 'email',
type: 'string',
2019-06-23 03:35:23 -07:00
default: '',
description: 'The Google Service account similar to user-808@project.iam.gserviceaccount.com.',
2019-06-23 03:35:23 -07:00
},
{
displayName: 'Private Key',
name: 'privateKey',
type: 'string',
2019-06-23 03:35:23 -07:00
default: '',
description: 'Use the multiline editor. Make sure there are exactly 3 lines.<br />-----BEGIN PRIVATE KEY-----<br />KEY IN A SINGLE LINE<br />-----END PRIVATE KEY-----',
2019-06-23 03:35:23 -07:00
},
{
displayName: ' Impersonate a User',
name: 'inpersonate',
type: 'boolean',
default: false,
},
{
displayName: 'Email',
name: 'delegatedEmail',
type: 'string',
default: '',
displayOptions: {
show: {
inpersonate: [
true,
],
},
},
description: 'The email address of the user for which the application is requesting delegated access.',
},
2019-06-23 03:35:23 -07:00
];
}