mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
TypeScript
import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import { bucketFields, bucketOperations } from './BucketDescription';
|
|
import { objectFields, objectOperations } from './ObjectDescription';
|
|
|
|
export class GoogleCloudStorage implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Google Cloud Storage',
|
|
name: 'googleCloudStorage',
|
|
icon: 'file:googleCloudStorage.svg',
|
|
group: ['transform'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Use the Google Cloud Storage API',
|
|
defaults: {
|
|
name: 'Google Cloud Storage',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'googleCloudStorageOAuth2Api',
|
|
required: true,
|
|
testedBy: {
|
|
request: {
|
|
method: 'GET',
|
|
url: '/b/',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
requestDefaults: {
|
|
returnFullResponse: true,
|
|
baseURL: 'https://storage.googleapis.com/storage/v1',
|
|
},
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Bucket',
|
|
value: 'bucket',
|
|
},
|
|
{
|
|
name: 'Object',
|
|
value: 'object',
|
|
},
|
|
],
|
|
default: 'bucket',
|
|
},
|
|
|
|
// BUCKET
|
|
...bucketOperations,
|
|
...bucketFields,
|
|
|
|
// OBJECT
|
|
...objectOperations,
|
|
...objectFields,
|
|
],
|
|
};
|
|
}
|