get_cloud_resource_details
Retrieve detailed information about a specific cloud resource by specifying provider, resource type, and ID. Designed for RAD Security to enhance cloud environment visibility and security insights.
Instructions
Get detailed information about a specific cloud resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | Yes | Cloud provider (aws, gcp, azure, linode) | |
resource_id | Yes | ID of the cloud resource | |
resource_type | Yes | Type of cloud resource (to be fetched from get_cloud_resource_facet_values or from list_cloud_resources) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"provider": {
"description": "Cloud provider (aws, gcp, azure, linode)",
"enum": [
"aws",
"gcp",
"azure",
"linode"
],
"type": "string"
},
"resource_id": {
"description": "ID of the cloud resource",
"type": "string"
},
"resource_type": {
"description": "Type of cloud resource (to be fetched from get_cloud_resource_facet_values or from list_cloud_resources)",
"type": "string"
}
},
"required": [
"provider",
"resource_type",
"resource_id"
],
"type": "object"
}