Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Aws/IAM/descriptions/group/Group.resource.ts
Stanimira Rikova ab1047ebde feat(AWS IAM Node): Add new AWS IAM Node (#11963)
Co-authored-by: Adina Totorean <adinatotorean99@gmail.com>
2025-05-15 11:59:19 +01:00

146 lines
3.1 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import * as create from './create.operation';
import * as del from './delete.operation';
import * as get from './get.operation';
import * as getAll from './getAll.operation';
import * as update from './update.operation';
import { CURRENT_VERSION } from '../../helpers/constants';
import { handleError } from '../../helpers/errorHandler';
import {
deleteGroupMembers,
simplifyGetAllGroupsResponse,
simplifyGetGroupsResponse,
} from '../../helpers/utils';
export const description: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'getAll',
displayOptions: {
show: {
resource: ['group'],
},
},
options: [
{
name: 'Create',
value: 'create',
action: 'Create group',
description: 'Create a new group',
routing: {
request: {
method: 'POST',
url: '',
body: {
Action: 'CreateGroup',
Version: CURRENT_VERSION,
GroupName: '={{ $parameter["groupName"] }}',
},
ignoreHttpStatusErrors: true,
},
output: {
postReceive: [handleError],
},
},
},
{
name: 'Delete',
value: 'delete',
action: 'Delete group',
description: 'Delete an existing group',
routing: {
send: {
preSend: [deleteGroupMembers],
},
request: {
method: 'POST',
url: '',
body: {
Action: 'DeleteGroup',
Version: CURRENT_VERSION,
GroupName: '={{ $parameter["group"] }}',
},
ignoreHttpStatusErrors: true,
},
output: {
postReceive: [handleError],
},
},
},
{
name: 'Get',
value: 'get',
action: 'Get group',
description: 'Retrieve details of an existing group',
routing: {
request: {
method: 'POST',
url: '',
body: {
Action: 'GetGroup',
Version: CURRENT_VERSION,
GroupName: '={{ $parameter["group"] }}',
},
ignoreHttpStatusErrors: true,
},
output: {
postReceive: [handleError, simplifyGetGroupsResponse],
},
},
},
{
name: 'Get Many',
value: 'getAll',
action: 'Get many groups',
description: 'Retrieve a list of groups',
routing: {
request: {
method: 'POST',
url: '',
body: {
Action: 'ListGroups',
Version: CURRENT_VERSION,
},
ignoreHttpStatusErrors: true,
},
output: {
postReceive: [handleError, simplifyGetAllGroupsResponse],
},
},
},
{
name: 'Update',
value: 'update',
action: 'Update group',
description: 'Update an existing group',
routing: {
request: {
method: 'POST',
url: '',
body: {
Action: 'UpdateGroup',
Version: CURRENT_VERSION,
GroupName: '={{ $parameter["group"] }}',
NewGroupName: '={{ $parameter["groupName"] }}',
},
ignoreHttpStatusErrors: true,
},
output: {
postReceive: [handleError],
},
},
},
],
},
...create.description,
...del.description,
...get.description,
...getAll.description,
...update.description,
];