@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
12 lines (11 loc) • 374 B
JavaScript
import { EndevorConnectionAction } from "./../EndevorConnectionAction";
import { RequestMethod } from "../../AbstractRequest";
export class InvalidateCache extends EndevorConnectionAction {
constructor(name) {
super();
this.customPath = "/cache";
this.method = RequestMethod.PUT;
this.name = name;
this.params = { name };
}
}