/** * Microsoft Entra ID Node - Version 1 * Discriminator: resource=group, operation=update */ interface Credentials { microsoftEntraOAuth2Api: CredentialReference; } /** Update a group */ export type MicrosoftEntraV1GroupUpdateParams = { resource: 'group'; operation: 'update'; /** * Group to Update * @default {"mode":"list","value":""} */ group?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * Update Fields * @default {} */ updateFields?: { /** Whether people external to the organization can send messages to the group. Wait a few seconds before editing this field in a newly created group. * @default false */ allowExternalSenders?: boolean | Expression; /** Whether new members added to the group will be auto-subscribed to receive email notifications. Wait a few seconds before editing this field in a newly created group. * @default false */ autoSubscribeNewMembers?: boolean | Expression; /** Description for the group */ description?: string | Expression | PlaceholderValue; /** The name to display in the address book for the group */ displayName?: string | Expression | PlaceholderValue; /** The mail alias for the group. Only enter the local-part without the domain. */ mailNickname?: string | Expression | PlaceholderValue; /** The <a href="https://learn.microsoft.com/en-us/entra/identity/users/groups-dynamic-membership">dynamic membership rules</a> */ membershipRule?: string | Expression | PlaceholderValue; /** Indicates whether the dynamic membership processing is on or paused * @default On */ membershipRuleProcessingState?: 'On' | 'Paused' | Expression; /** A property set for the group that Office 365 services use to provision the corresponding data-at-rest resources (mailbox, OneDrive, groups sites, and so on) */ preferredDataLocation?: string | Expression | PlaceholderValue; /** Whether the group is a security group * @default true */ securityEnabled?: boolean | Expression; /** The unique identifier for the group, can only be updated if null, and is immutable once set */ uniqueName?: string | Expression | PlaceholderValue; /** Specifies the visibility of the group * @default Public */ visibility?: 'Private' | 'Public' | Expression; }; requestOptions?: { /** Batching * @default {"batch":{}} */ batching?: { /** Batching */ batch?: { /** Input will be split in batches to throttle requests. -1 for disabled. 0 will be treated as 1. * @default 50 */ batchSize?: number | Expression; /** Time (in milliseconds) between each batch of requests. 0 for disabled. * @default 1000 */ batchInterval?: number | Expression; }; }; /** Whether to accept the response even if SSL certificate validation is not possible * @default false */ allowUnauthorizedCerts?: boolean; /** HTTP proxy to use. If authentication is required it can be defined as follow: http://username:password@myproxy:3128 */ proxy?: string | Expression | PlaceholderValue; /** Time in ms to wait for the server to send response headers (and start the response body) before aborting the request * @default 10000 */ timeout?: number | Expression; }; }; export type MicrosoftEntraV1GroupUpdateNode = { type: 'n8n-nodes-base.microsoftEntra'; version: 1; credentials?: Credentials; config: NodeConfig; };