cloudflare
Version:
The official TypeScript library for the Cloudflare API
65 lines • 2.93 kB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../resource.mjs";
import * as DEXTestsAPI from "./dex-tests.mjs";
import { DEXTests, SchemaHTTPSSinglePage, } from "./dex-tests.mjs";
import * as FleetStatusAPI from "./fleet-status.mjs";
import { FleetStatus } from "./fleet-status.mjs";
import * as NetworksAPI from "./networks.mjs";
import { DeviceNetworksSinglePage, Networks, } from "./networks.mjs";
import * as OverrideCodesAPI from "./override-codes.mjs";
import { OverrideCodes } from "./override-codes.mjs";
import * as RevokeAPI from "./revoke.mjs";
import { Revoke } from "./revoke.mjs";
import * as SettingsAPI from "./settings.mjs";
import { Settings, } from "./settings.mjs";
import * as UnrevokeAPI from "./unrevoke.mjs";
import { Unrevoke } from "./unrevoke.mjs";
import * as PoliciesAPI from "./policies/policies.mjs";
import { Policies, } from "./policies/policies.mjs";
import * as PostureAPI from "./posture/posture.mjs";
import { DevicePostureRulesSinglePage, Posture, } from "./posture/posture.mjs";
import { SinglePage } from "../../../pagination.mjs";
export class Devices extends APIResource {
constructor() {
super(...arguments);
this.dexTests = new DEXTestsAPI.DEXTests(this._client);
this.networks = new NetworksAPI.Networks(this._client);
this.fleetStatus = new FleetStatusAPI.FleetStatus(this._client);
this.policies = new PoliciesAPI.Policies(this._client);
this.posture = new PostureAPI.Posture(this._client);
this.revoke = new RevokeAPI.Revoke(this._client);
this.settings = new SettingsAPI.Settings(this._client);
this.unrevoke = new UnrevokeAPI.Unrevoke(this._client);
this.overrideCodes = new OverrideCodesAPI.OverrideCodes(this._client);
}
/**
* Fetches a list of enrolled devices.
*/
list(params, options) {
const { account_id } = params;
return this._client.getAPIList(`/accounts/${account_id}/devices`, DevicesSinglePage, options);
}
/**
* Fetches details for a single device.
*/
get(deviceId, params, options) {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/devices/${deviceId}`, options)._thenUnwrap((obj) => obj.result);
}
}
export class DevicesSinglePage extends SinglePage {
}
Devices.DevicesSinglePage = DevicesSinglePage;
Devices.DEXTests = DEXTests;
Devices.SchemaHTTPSSinglePage = SchemaHTTPSSinglePage;
Devices.Networks = Networks;
Devices.DeviceNetworksSinglePage = DeviceNetworksSinglePage;
Devices.FleetStatus = FleetStatus;
Devices.Policies = Policies;
Devices.Posture = Posture;
Devices.DevicePostureRulesSinglePage = DevicePostureRulesSinglePage;
Devices.Revoke = Revoke;
Devices.Settings = Settings;
Devices.Unrevoke = Unrevoke;
Devices.OverrideCodes = OverrideCodes;
//# sourceMappingURL=devices.mjs.map