n8n/packages/nodes-base/nodes/Google/CloudStorage/GoogleCloudStorage.node.ts
Iván Ovejero d2b97c0713
refactor(core): apply lint rule node-class-description-non-core-color-present (#4426)
* 👕 Enable rule `node-class-description-non-core-color-present`

* 👕 Apply rule to remove deprecated `color`

* ✏️ Fix unrelated typos

* ✏️ Fix another unrelated typo

Co-authored-by: Michael Kret <michael.k@radency.com>
2022-10-25 09:06:54 +02:00

65 lines
1.3 KiB
TypeScript

import { 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,
],
};
}