import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for deleteSwitchStack operation
 */
export const deleteSwitchStackDescription: INodeProperties[] = [
	{
		displayName: 'Stack ID',
		name: 'stack_id',
		type: 'string',
		required: true,
		default: '',
		description: 'Stack ID of the switch stack to delete',
		displayOptions: {
			show: {
				operation: ['deleteSwitchStack'],
				resource: ['switch'],
				domain: ['monitoring'],
			},
		},
	},
];
