/** * Google Workspace Admin Node - Version 1 * Discriminator: resource=device, operation=changeStatus */ interface Credentials { gSuiteAdminOAuth2Api: CredentialReference; } /** Change the status of a ChromeOS device */ export type GSuiteAdminV1DeviceChangeStatusParams = { resource: 'device'; operation: 'changeStatus'; /** * Select the device you want to retrieve * @default {"mode":"list","value":""} */ deviceId?: { __rl: true; mode: 'list' | 'deviceId'; value: string; cachedResultName?: string }; /** * Set the status of a device * @default reenable */ action?: 'reenable' | 'disable' | Expression; }; export type GSuiteAdminV1DeviceChangeStatusNode = { type: 'n8n-nodes-base.gSuiteAdmin'; version: 1; credentials?: Credentials; config: NodeConfig; };