Lists shield information barrier reports.
This operation is performed by calling function getShieldInformationBarrierReports.
See the endpoint docs at API Reference.
await client.shieldInformationBarrierReports.getShieldInformationBarrierReports(
{
shieldInformationBarrierId: barrierId,
} satisfies GetShieldInformationBarrierReportsQueryParams,
);
GetShieldInformationBarrierReportsQueryParams
GetShieldInformationBarrierReportsOptionalsInputThis function returns a value of type ShieldInformationBarrierReports.
Returns a paginated list of shield information barrier report objects.
Creates a shield information barrier report for a given barrier.
This operation is performed by calling function createShieldInformationBarrierReport.
See the endpoint docs at API Reference.
await client.shieldInformationBarrierReports.createShieldInformationBarrierReport(
{
shieldInformationBarrier: {
id: barrierId,
type: 'shield_information_barrier' as ShieldInformationBarrierBaseTypeField,
} satisfies ShieldInformationBarrierBase,
} satisfies ShieldInformationBarrierReference,
);
ShieldInformationBarrierReference
CreateShieldInformationBarrierReportOptionalsInputThis function returns a value of type ShieldInformationBarrierReport.
Returns the shield information barrier report information object.
Retrieves a shield information barrier report by its ID.
This operation is performed by calling function getShieldInformationBarrierReportById.
See the endpoint docs at API Reference.
await client.shieldInformationBarrierReports.getShieldInformationBarrierReportById(
createdReport.id!,
);
string
GetShieldInformationBarrierReportByIdOptionalsInputThis function returns a value of type ShieldInformationBarrierReport.
Returns the shield information barrier report object.