@paywatchglobal/n8n-nodes-azure-storage-plus 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -0
- package/dist/credentials/AzureBlobStoragePlusApi.credentials.d.ts +11 -0
- package/dist/credentials/AzureBlobStoragePlusApi.credentials.js +49 -0
- package/dist/credentials/AzureBlobStoragePlusApi.credentials.js.map +1 -0
- package/dist/nodes/AzureStoragePlus/AzureStoragePlus.node.d.ts +15 -0
- package/dist/nodes/AzureStoragePlus/AzureStoragePlus.node.js +457 -0
- package/dist/nodes/AzureStoragePlus/AzureStoragePlus.node.js.map +1 -0
- package/dist/nodes/AzureStoragePlus/AzureStoragePlus.node.json +22 -0
- package/dist/nodes/AzureStoragePlus/GenericFunctions.d.ts +28 -0
- package/dist/nodes/AzureStoragePlus/GenericFunctions.js +330 -0
- package/dist/nodes/AzureStoragePlus/GenericFunctions.js.map +1 -0
- package/dist/nodes/AzureStoragePlus/azureStorage.svg +19 -0
- package/dist/nodes/AzureStoragePlus/descriptions/BlobDescription.d.ts +3 -0
- package/dist/nodes/AzureStoragePlus/descriptions/BlobDescription.js +455 -0
- package/dist/nodes/AzureStoragePlus/descriptions/BlobDescription.js.map +1 -0
- package/dist/nodes/AzureStoragePlus/descriptions/ContainerDescription.d.ts +3 -0
- package/dist/nodes/AzureStoragePlus/descriptions/ContainerDescription.js +227 -0
- package/dist/nodes/AzureStoragePlus/descriptions/ContainerDescription.js.map +1 -0
- package/dist/nodes/AzureStoragePlus/descriptions/index.d.ts +2 -0
- package/dist/nodes/AzureStoragePlus/descriptions/index.js +10 -0
- package/dist/nodes/AzureStoragePlus/descriptions/index.js.map +1 -0
- package/dist/package.json +52 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +52 -0
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.blobFields = exports.blobOperations = void 0;
|
|
4
|
+
exports.blobOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['blob'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Copy',
|
|
18
|
+
value: 'copy',
|
|
19
|
+
description: 'Copy a blob to a destination (server-side)',
|
|
20
|
+
action: 'Copy blob',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Create',
|
|
24
|
+
value: 'create',
|
|
25
|
+
description: 'Create a new blob or replace an existing one',
|
|
26
|
+
action: 'Create blob',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Delete',
|
|
30
|
+
value: 'delete',
|
|
31
|
+
description: 'Delete a blob',
|
|
32
|
+
action: 'Delete blob',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Get',
|
|
36
|
+
value: 'get',
|
|
37
|
+
description: 'Download a blob',
|
|
38
|
+
action: 'Get blob',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Get Many',
|
|
42
|
+
value: 'getAll',
|
|
43
|
+
description: 'List blobs in a container',
|
|
44
|
+
action: 'Get many blobs',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Get Properties',
|
|
48
|
+
value: 'getProperties',
|
|
49
|
+
description: 'Get blob properties without downloading content',
|
|
50
|
+
action: 'Get blob properties',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Set Metadata',
|
|
54
|
+
value: 'setMetadata',
|
|
55
|
+
description: 'Set metadata on a blob',
|
|
56
|
+
action: 'Set blob metadata',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Set Tier',
|
|
60
|
+
value: 'setTier',
|
|
61
|
+
description: 'Set the access tier of a blob',
|
|
62
|
+
action: 'Set blob tier',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: 'Undelete',
|
|
66
|
+
value: 'undelete',
|
|
67
|
+
description: 'Restore a soft-deleted blob',
|
|
68
|
+
action: 'Undelete blob',
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
default: 'getAll',
|
|
72
|
+
},
|
|
73
|
+
];
|
|
74
|
+
const containerField = {
|
|
75
|
+
displayName: 'Container',
|
|
76
|
+
name: 'container',
|
|
77
|
+
type: 'resourceLocator',
|
|
78
|
+
default: { mode: 'list', value: '' },
|
|
79
|
+
required: true,
|
|
80
|
+
modes: [
|
|
81
|
+
{
|
|
82
|
+
displayName: 'From List',
|
|
83
|
+
name: 'list',
|
|
84
|
+
type: 'list',
|
|
85
|
+
typeOptions: {
|
|
86
|
+
searchListMethod: 'getContainers',
|
|
87
|
+
searchable: true,
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
displayName: 'By Name',
|
|
92
|
+
name: 'id',
|
|
93
|
+
type: 'string',
|
|
94
|
+
placeholder: 'e.g. my-container',
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
description: 'The container the blob belongs to',
|
|
98
|
+
};
|
|
99
|
+
const blobField = {
|
|
100
|
+
displayName: 'Blob',
|
|
101
|
+
name: 'blob',
|
|
102
|
+
type: 'resourceLocator',
|
|
103
|
+
default: { mode: 'list', value: '' },
|
|
104
|
+
required: true,
|
|
105
|
+
modes: [
|
|
106
|
+
{
|
|
107
|
+
displayName: 'From List',
|
|
108
|
+
name: 'list',
|
|
109
|
+
type: 'list',
|
|
110
|
+
typeOptions: {
|
|
111
|
+
searchListMethod: 'getBlobs',
|
|
112
|
+
searchable: true,
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
displayName: 'By Name',
|
|
117
|
+
name: 'id',
|
|
118
|
+
type: 'string',
|
|
119
|
+
placeholder: 'e.g. folder/myfile.pdf',
|
|
120
|
+
},
|
|
121
|
+
],
|
|
122
|
+
description: 'The blob to operate on',
|
|
123
|
+
};
|
|
124
|
+
exports.blobFields = [
|
|
125
|
+
{
|
|
126
|
+
...containerField,
|
|
127
|
+
displayOptions: { show: { resource: ['blob'], operation: ['create'] } },
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
displayName: 'Blob Name',
|
|
131
|
+
name: 'blobName',
|
|
132
|
+
type: 'string',
|
|
133
|
+
default: '',
|
|
134
|
+
required: true,
|
|
135
|
+
displayOptions: { show: { resource: ['blob'], operation: ['create'] } },
|
|
136
|
+
placeholder: 'e.g. folder/myfile.pdf',
|
|
137
|
+
description: 'The name (path) of the blob to create',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
displayName: 'From',
|
|
141
|
+
name: 'from',
|
|
142
|
+
type: 'options',
|
|
143
|
+
default: 'binary',
|
|
144
|
+
displayOptions: { show: { resource: ['blob'], operation: ['create'] } },
|
|
145
|
+
options: [
|
|
146
|
+
{ name: 'Binary', value: 'binary' },
|
|
147
|
+
{ name: 'URL', value: 'url' },
|
|
148
|
+
],
|
|
149
|
+
description: 'Whether to upload from binary data or copy from a URL',
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
displayName: 'Input Binary Field',
|
|
153
|
+
name: 'binaryPropertyName',
|
|
154
|
+
type: 'string',
|
|
155
|
+
default: 'data',
|
|
156
|
+
required: true,
|
|
157
|
+
displayOptions: {
|
|
158
|
+
show: { resource: ['blob'], operation: ['create'], from: ['binary'] },
|
|
159
|
+
},
|
|
160
|
+
description: 'Name of the binary property containing the file data',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
displayName: 'Source URL',
|
|
164
|
+
name: 'sourceUrl',
|
|
165
|
+
type: 'string',
|
|
166
|
+
default: '',
|
|
167
|
+
required: true,
|
|
168
|
+
displayOptions: {
|
|
169
|
+
show: { resource: ['blob'], operation: ['create'], from: ['url'] },
|
|
170
|
+
},
|
|
171
|
+
placeholder: 'e.g. https://example.com/file.pdf',
|
|
172
|
+
description: 'URL to copy blob content from',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
displayName: 'Options',
|
|
176
|
+
name: 'options',
|
|
177
|
+
type: 'collection',
|
|
178
|
+
placeholder: 'Add Option',
|
|
179
|
+
default: {},
|
|
180
|
+
displayOptions: { show: { resource: ['blob'], operation: ['create'] } },
|
|
181
|
+
options: [
|
|
182
|
+
{
|
|
183
|
+
displayName: 'Access Tier',
|
|
184
|
+
name: 'accessTier',
|
|
185
|
+
type: 'options',
|
|
186
|
+
options: [
|
|
187
|
+
{ name: 'Hot', value: 'Hot' },
|
|
188
|
+
{ name: 'Cool', value: 'Cool' },
|
|
189
|
+
{ name: 'Cold', value: 'Cold' },
|
|
190
|
+
{ name: 'Archive', value: 'Archive' },
|
|
191
|
+
],
|
|
192
|
+
default: 'Hot',
|
|
193
|
+
description: 'The access tier for the blob',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
displayName: 'Content Type',
|
|
197
|
+
name: 'contentType',
|
|
198
|
+
type: 'string',
|
|
199
|
+
default: '',
|
|
200
|
+
description: 'The MIME content type of the blob (auto-detected if not specified)',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
displayName: 'Metadata',
|
|
204
|
+
name: 'metadata',
|
|
205
|
+
type: 'fixedCollection',
|
|
206
|
+
typeOptions: { multipleValues: true },
|
|
207
|
+
default: {},
|
|
208
|
+
options: [
|
|
209
|
+
{
|
|
210
|
+
displayName: 'Metadata',
|
|
211
|
+
name: 'metadataValues',
|
|
212
|
+
values: [
|
|
213
|
+
{ displayName: 'Key', name: 'key', type: 'string', default: '' },
|
|
214
|
+
{ displayName: 'Value', name: 'value', type: 'string', default: '' },
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
],
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
displayName: 'Tags',
|
|
221
|
+
name: 'tags',
|
|
222
|
+
type: 'fixedCollection',
|
|
223
|
+
typeOptions: { multipleValues: true },
|
|
224
|
+
default: {},
|
|
225
|
+
options: [
|
|
226
|
+
{
|
|
227
|
+
displayName: 'Tags',
|
|
228
|
+
name: 'tagValues',
|
|
229
|
+
values: [
|
|
230
|
+
{ displayName: 'Key', name: 'key', type: 'string', default: '' },
|
|
231
|
+
{ displayName: 'Value', name: 'value', type: 'string', default: '' },
|
|
232
|
+
],
|
|
233
|
+
},
|
|
234
|
+
],
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
...containerField,
|
|
240
|
+
displayOptions: { show: { resource: ['blob'], operation: ['delete'] } },
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
...blobField,
|
|
244
|
+
displayOptions: { show: { resource: ['blob'], operation: ['delete'] } },
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
...containerField,
|
|
248
|
+
displayOptions: { show: { resource: ['blob'], operation: ['get'] } },
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
...blobField,
|
|
252
|
+
displayOptions: { show: { resource: ['blob'], operation: ['get'] } },
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
displayName: 'Binary Property',
|
|
256
|
+
name: 'binaryPropertyName',
|
|
257
|
+
type: 'string',
|
|
258
|
+
default: 'data',
|
|
259
|
+
displayOptions: { show: { resource: ['blob'], operation: ['get'] } },
|
|
260
|
+
description: 'Name of the binary property to write the downloaded file to',
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
...containerField,
|
|
264
|
+
displayOptions: { show: { resource: ['blob'], operation: ['getAll'] } },
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
displayName: 'Return All',
|
|
268
|
+
name: 'returnAll',
|
|
269
|
+
type: 'boolean',
|
|
270
|
+
default: false,
|
|
271
|
+
displayOptions: { show: { resource: ['blob'], operation: ['getAll'] } },
|
|
272
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
displayName: 'Limit',
|
|
276
|
+
name: 'limit',
|
|
277
|
+
type: 'number',
|
|
278
|
+
typeOptions: { minValue: 1 },
|
|
279
|
+
default: 50,
|
|
280
|
+
displayOptions: {
|
|
281
|
+
show: { resource: ['blob'], operation: ['getAll'], returnAll: [false] },
|
|
282
|
+
},
|
|
283
|
+
description: 'Max number of results to return',
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
displayName: 'Options',
|
|
287
|
+
name: 'options',
|
|
288
|
+
type: 'collection',
|
|
289
|
+
placeholder: 'Add Option',
|
|
290
|
+
default: {},
|
|
291
|
+
displayOptions: { show: { resource: ['blob'], operation: ['getAll'] } },
|
|
292
|
+
options: [
|
|
293
|
+
{
|
|
294
|
+
displayName: 'Prefix',
|
|
295
|
+
name: 'prefix',
|
|
296
|
+
type: 'string',
|
|
297
|
+
default: '',
|
|
298
|
+
description: 'Filter results to blobs whose names begin with this prefix',
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
displayName: 'Delimiter',
|
|
302
|
+
name: 'delimiter',
|
|
303
|
+
type: 'string',
|
|
304
|
+
default: '',
|
|
305
|
+
description: 'Delimiter for virtual hierarchy (e.g. "/" to list only blobs at the current level)',
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
displayName: 'Name Filter',
|
|
309
|
+
name: 'nameFilter',
|
|
310
|
+
type: 'string',
|
|
311
|
+
default: '',
|
|
312
|
+
placeholder: 'e.g. report or .*report.*\\.pdf$',
|
|
313
|
+
description: 'Filter blob names. Plain text does a case-insensitive search; regex metacharacters (*, +, ^, $, etc.) activate regex mode. Use with Prefix for best performance.',
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
displayName: 'Include',
|
|
317
|
+
name: 'include',
|
|
318
|
+
type: 'multiOptions',
|
|
319
|
+
options: [
|
|
320
|
+
{ name: 'Copy', value: 'copy' },
|
|
321
|
+
{ name: 'Deleted', value: 'deleted' },
|
|
322
|
+
{ name: 'Deleted With Versions', value: 'deletedwithversions' },
|
|
323
|
+
{ name: 'Immutability Policy', value: 'immutabilitypolicy' },
|
|
324
|
+
{ name: 'Legal Hold', value: 'legalhold' },
|
|
325
|
+
{ name: 'Metadata', value: 'metadata' },
|
|
326
|
+
{ name: 'Permissions', value: 'permissions' },
|
|
327
|
+
{ name: 'Snapshots', value: 'snapshots' },
|
|
328
|
+
{ name: 'Tags', value: 'tags' },
|
|
329
|
+
{ name: 'Uncommitted Blobs', value: 'uncommittedblobs' },
|
|
330
|
+
{ name: 'Versions', value: 'versions' },
|
|
331
|
+
],
|
|
332
|
+
default: [],
|
|
333
|
+
description: 'Additional information to include in the listing',
|
|
334
|
+
},
|
|
335
|
+
],
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
...containerField,
|
|
339
|
+
displayOptions: { show: { resource: ['blob'], operation: ['getProperties'] } },
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
...blobField,
|
|
343
|
+
displayOptions: { show: { resource: ['blob'], operation: ['getProperties'] } },
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
...containerField,
|
|
347
|
+
displayName: 'Source Container',
|
|
348
|
+
name: 'container',
|
|
349
|
+
displayOptions: { show: { resource: ['blob'], operation: ['copy'] } },
|
|
350
|
+
description: 'The container of the source blob',
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
...blobField,
|
|
354
|
+
displayName: 'Source Blob',
|
|
355
|
+
name: 'blob',
|
|
356
|
+
displayOptions: { show: { resource: ['blob'], operation: ['copy'] } },
|
|
357
|
+
description: 'The source blob to copy',
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
displayName: 'Destination Container',
|
|
361
|
+
name: 'destContainer',
|
|
362
|
+
type: 'resourceLocator',
|
|
363
|
+
default: { mode: 'list', value: '' },
|
|
364
|
+
required: true,
|
|
365
|
+
displayOptions: { show: { resource: ['blob'], operation: ['copy'] } },
|
|
366
|
+
modes: [
|
|
367
|
+
{
|
|
368
|
+
displayName: 'From List',
|
|
369
|
+
name: 'list',
|
|
370
|
+
type: 'list',
|
|
371
|
+
typeOptions: {
|
|
372
|
+
searchListMethod: 'getContainers',
|
|
373
|
+
searchable: true,
|
|
374
|
+
},
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
displayName: 'By Name',
|
|
378
|
+
name: 'id',
|
|
379
|
+
type: 'string',
|
|
380
|
+
placeholder: 'e.g. my-container',
|
|
381
|
+
},
|
|
382
|
+
],
|
|
383
|
+
description: 'The destination container to copy the blob to',
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
displayName: 'Destination Blob Name',
|
|
387
|
+
name: 'destBlobName',
|
|
388
|
+
type: 'string',
|
|
389
|
+
default: '',
|
|
390
|
+
required: true,
|
|
391
|
+
displayOptions: { show: { resource: ['blob'], operation: ['copy'] } },
|
|
392
|
+
placeholder: 'e.g. folder/copy-of-file.pdf',
|
|
393
|
+
description: 'The name (path) for the copied blob',
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
...containerField,
|
|
397
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setTier'] } },
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
...blobField,
|
|
401
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setTier'] } },
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
displayName: 'Access Tier',
|
|
405
|
+
name: 'accessTier',
|
|
406
|
+
type: 'options',
|
|
407
|
+
options: [
|
|
408
|
+
{ name: 'Hot', value: 'Hot' },
|
|
409
|
+
{ name: 'Cool', value: 'Cool' },
|
|
410
|
+
{ name: 'Cold', value: 'Cold' },
|
|
411
|
+
{ name: 'Archive', value: 'Archive' },
|
|
412
|
+
],
|
|
413
|
+
default: 'Hot',
|
|
414
|
+
required: true,
|
|
415
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setTier'] } },
|
|
416
|
+
description: 'The access tier to set for the blob',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
...containerField,
|
|
420
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setMetadata'] } },
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
...blobField,
|
|
424
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setMetadata'] } },
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
displayName: 'Metadata',
|
|
428
|
+
name: 'metadata',
|
|
429
|
+
type: 'fixedCollection',
|
|
430
|
+
typeOptions: { multipleValues: true },
|
|
431
|
+
default: {},
|
|
432
|
+
required: true,
|
|
433
|
+
displayOptions: { show: { resource: ['blob'], operation: ['setMetadata'] } },
|
|
434
|
+
options: [
|
|
435
|
+
{
|
|
436
|
+
displayName: 'Metadata',
|
|
437
|
+
name: 'metadataValues',
|
|
438
|
+
values: [
|
|
439
|
+
{ displayName: 'Key', name: 'key', type: 'string', default: '' },
|
|
440
|
+
{ displayName: 'Value', name: 'value', type: 'string', default: '' },
|
|
441
|
+
],
|
|
442
|
+
},
|
|
443
|
+
],
|
|
444
|
+
description: 'Key-value metadata pairs to set on the blob',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
...containerField,
|
|
448
|
+
displayOptions: { show: { resource: ['blob'], operation: ['undelete'] } },
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
...blobField,
|
|
452
|
+
displayOptions: { show: { resource: ['blob'], operation: ['undelete'] } },
|
|
453
|
+
},
|
|
454
|
+
];
|
|
455
|
+
//# sourceMappingURL=BlobDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobDescription.js","sourceRoot":"","sources":["../../../../nodes/AzureStoragePlus/descriptions/BlobDescription.ts"],"names":[],"mappings":"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"}
|