/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SshListRolesByIpRequest */ export interface SshListRolesByIpRequest { /** * [Required] IP address of remote host * @type {string} * @memberof SshListRolesByIpRequest */ ip?: string; } /** * Check if a given object implements the SshListRolesByIpRequest interface. */ export declare function instanceOfSshListRolesByIpRequest(value: object): value is SshListRolesByIpRequest; export declare function SshListRolesByIpRequestFromJSON(json: any): SshListRolesByIpRequest; export declare function SshListRolesByIpRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SshListRolesByIpRequest; export declare function SshListRolesByIpRequestToJSON(json: any): SshListRolesByIpRequest; export declare function SshListRolesByIpRequestToJSONTyped(value?: SshListRolesByIpRequest | null, ignoreDiscriminator?: boolean): any;