retrieve_policy_configuration
Retrieve policy configuration details by specifying the policy name, enabling access to structured policy data for analysis and implementation.
Instructions
Retrieve and print the policy configuration for a given policy name.
Args: policy_name: The name of the policy to retrieve.
Returns: A dictionary containing the policy configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
policy_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"policy_name": {
"title": "Policy Name",
"type": "string"
}
},
"required": [
"policy_name"
],
"title": "retrieve_policy_configurationArguments",
"type": "object"
}