mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
7ff24f134b
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
73 lines
1.5 KiB
TypeScript
73 lines
1.5 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
import * as database from './database/Database.resource';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Google BigQuery',
|
|
name: 'googleBigQuery',
|
|
icon: 'file:googleBigQuery.svg',
|
|
group: ['input'],
|
|
version: [2, 2.1],
|
|
subtitle: '={{$parameter["operation"]}}',
|
|
description: 'Consume Google BigQuery API',
|
|
defaults: {
|
|
name: 'Google BigQuery',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'googleApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['serviceAccount'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'googleBigQueryOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['oAuth2'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
|
name: 'OAuth2 (recommended)',
|
|
value: 'oAuth2',
|
|
},
|
|
{
|
|
name: 'Service Account',
|
|
value: 'serviceAccount',
|
|
},
|
|
],
|
|
default: 'oAuth2',
|
|
},
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'hidden',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Database',
|
|
value: 'database',
|
|
},
|
|
],
|
|
default: 'database',
|
|
},
|
|
...database.description,
|
|
],
|
|
};
|