UNPKG

gizmovsky

Version:
20 lines (18 loc) 781 B
import { GizmoClient } from '../GizmoClient.js'; export class ApplicationDeployments { constructor(client) { this.client = client; } getApplicationdeployments(params = {}) { return this.client.request('get', '/v3.0/applicationdeployments', {}, params); } getApplicationdeploymentById(id, params = {}) { return this.client.request('get', `/v3.0/applicationdeployments/${id}`, {}, params); } getApplicationdeploymentUsages(id, params = {}) { return this.client.request('get', `/v3.0/applicationdeployments/${id}/usages`, {}, params); } unassignApplicationdeployment(id, params = {}) { return this.client.request('get', `/v3.0/applicationdeployments/${id}/unassign`, {}, params); } }