UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

55 lines 2.17 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../../../resource.mjs"; import * as IntegrationsAPI from "./integrations.mjs"; import { Integrations, IntegrationsSinglePage, } from "./integrations.mjs"; import { SinglePage } from "../../../../pagination.mjs"; export class Posture extends APIResource { constructor() { super(...arguments); this.integrations = new IntegrationsAPI.Integrations(this._client); } /** * Creates a new device posture rule. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/devices/posture`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Updates a device posture rule. */ update(ruleId, params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/devices/posture/${ruleId}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Fetches device posture rules for a Zero Trust account. */ list(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/posture`, DevicePostureRulesSinglePage, options); } /** * Deletes a device posture rule. */ delete(ruleId, params, options) { const { account_id } = params; return this._client.delete(`/accounts/${account_id}/devices/posture/${ruleId}`, options)._thenUnwrap((obj) => obj.result); } /** * Fetches a single device posture rule. */ get(ruleId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/devices/posture/${ruleId}`, options)._thenUnwrap((obj) => obj.result); } } export class DevicePostureRulesSinglePage extends SinglePage { } Posture.DevicePostureRulesSinglePage = DevicePostureRulesSinglePage; Posture.Integrations = Integrations; Posture.IntegrationsSinglePage = IntegrationsSinglePage; //# sourceMappingURL=posture.mjs.map