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