mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(Azure Storage Node): New node (#12536)
This commit is contained in:
committed by
GitHub
parent
d550382a4a
commit
727f6f3c0e
@@ -0,0 +1,32 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class AzureStorageOAuth2Api implements ICredentialType {
|
||||
name = 'azureStorageOAuth2Api';
|
||||
|
||||
displayName = 'Azure Storage OAuth2 API';
|
||||
|
||||
extends = ['microsoftOAuth2Api'];
|
||||
|
||||
documentationUrl = 'azurestorage';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Account',
|
||||
name: 'account',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Base URL',
|
||||
name: 'baseUrl',
|
||||
type: 'hidden',
|
||||
default: '=https://{{ $self["account"] }}.blob.core.windows.net',
|
||||
},
|
||||
{
|
||||
displayName: 'Scope',
|
||||
name: 'scope',
|
||||
type: 'hidden',
|
||||
default: 'https://storage.azure.com/.default',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user