import type { SecretSpec } from '../schemas/SecretSpec'; export interface WinRmNtlmSpec extends SecretSpec { /** * This is the NTLM domain name */ domain: string; /** * This is the NTLM password */ password: string; /** * WinRm port * @format int32 * @default 5986 */ port?: number; /** * This is the Kerberos either to skip certificate checks * @default true */ skip_cert_checks?: boolean; /** * This specifies the type of secret */ type: 'WinRmNTLM'; /** * This is the Kerberos powershell runs without loading profile */ use_no_profile?: boolean; /** * This is the NTLM either to use SSL/https * @default true */ use_ssl?: boolean; /** * This is the NTLM user name */ username: string; }