// This is Generated Source. import AuthProfileResource from "../definitions/AuthProfileResource"; import PathSegment from "../PathSegment"; import Check from "./Check"; export default class AuthzProfile extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("authz-profile", id, prv, service); } /** * */ check(id?: string) { return new Check(this, id); } /** * */ get(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }).then((res) => { return res.json(); }); } /** * * return {ApiResponse} */ getRaw(): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: undefined, }); } }