get_cloud_resource_facet_value
Retrieve specific facet values from cloud providers like AWS, GCP, Azure, or Linode to enhance security insights and resource management in RAD Security.
Instructions
Get values for a specific facet from a cloud provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
facet_id | Yes | ID of the facet | |
provider | Yes | Cloud provider (aws, gcp, azure, linode) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"facet_id": {
"description": "ID of the facet",
"type": "string"
},
"provider": {
"description": "Cloud provider (aws, gcp, azure, linode)",
"enum": [
"aws",
"gcp",
"azure",
"linode"
],
"type": "string"
}
},
"required": [
"provider",
"facet_id"
],
"type": "object"
}