deploy
This commit is contained in:
57
skills/device-assurances/SKILL.md
Normal file
57
skills/device-assurances/SKILL.md
Normal file
@@ -0,0 +1,57 @@
|
||||
---
|
||||
name: device-assurances-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /api/v1/device-assurances for the device assurances route group.
|
||||
---
|
||||
|
||||
# device assurances API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /api/v1/device-assurances for the device assurances route group.
|
||||
|
||||
Use the generated operation tools to make real API calls. Do not invent API responses.
|
||||
If a tool reports missing setup, return the exact setup field name to the caller.
|
||||
For write, update, or delete operations, state the intended action before calling the tool.
|
||||
|
||||
## Operations
|
||||
|
||||
### list_device_assurance_policies
|
||||
|
||||
- Operation ID: `list_device_assurance_policies`
|
||||
- Route: `GET /api/v1/device-assurances`
|
||||
- Mode: READ
|
||||
- Summary: List all device assurance policies
|
||||
|
||||
### create_device_assurance_policy
|
||||
|
||||
- Operation ID: `create_device_assurance_policy`
|
||||
- Route: `POST /api/v1/device-assurances`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a device assurance policy
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_device_assurance_policy
|
||||
|
||||
- Operation ID: `get_device_assurance_policy`
|
||||
- Route: `GET /api/v1/device-assurances/{deviceAssuranceId}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a device assurance policy
|
||||
- Parameters:
|
||||
- `deviceAssuranceId` in `path` required
|
||||
|
||||
### replace_device_assurance_policy
|
||||
|
||||
- Operation ID: `replace_device_assurance_policy`
|
||||
- Route: `PUT /api/v1/device-assurances/{deviceAssuranceId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Replace a device assurance policy
|
||||
- Parameters:
|
||||
- `deviceAssuranceId` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_device_assurance_policy
|
||||
|
||||
- Operation ID: `delete_device_assurance_policy`
|
||||
- Route: `DELETE /api/v1/device-assurances/{deviceAssuranceId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete a device assurance policy
|
||||
- Parameters:
|
||||
- `deviceAssuranceId` in `path` required
|
||||
Reference in New Issue
Block a user