Retrieves recommendations according to status and other filters
Status filters
Name | Description |
---|---|
status_filter |
|
is_open | true to return only open recommendations. false to return only closed. null or omit to return all |
user_status |
|
{
"status_filter": "potential_savings",
"user_status": {
"DONE": true/false/null,
"EXCLUDED": true/false/null
},
"is_starred": true/false/null,
"open_recs_creation_date": {"from": "2024-01-13", "to": "2024-01-23"},
"closed_and_done_recs_dates": {
"last_update_date": { "from": "2024-01-13", "to": "2024-06-23" },
"operator": AND/OR,
"creation_date": { "from": "2024-01-13", "to": "2024-01-23" }
},
"annual_savings_greater_than": 1000,
"cat_id": [1,2],
"type_id": {
"negate": true/false, //optional, default false
"eq": [ "rds-class-change", ...]
},
"service": {
"negate": true/false, //optional, default false
"eq": [...]
},
"region": { // like type_id
},
"linked_account_id": {
// like type_id
},
"instance_type": {
// like type_id
},
"resource_id": {
// like type_id
},
"virtual_tag": {
"uuid": ...,
"eq": [ "val1", ...]
},
"custom_tags": {
"negate": true/false, //optional, default false
"condition":
[{
"tag": "...",
"eq": [ "val1", ...]
}]
},
"enrichment_tags": {
// like custom_tags
}
}
Date Filters
There is a date filter for opened recommendations, and another date filter for closed and done recommendations. For open-done recommendations, both filters apply.
Name | Applicable for | Description |
---|---|---|
open_recs_creation_date | Open | The filter for open recommendations allows filtering based on creation date: {"from": "2024-01-13", "to": "2024-01-23"} You may include the from or to fields or both |
closed_and_done_recs_dates | Closed and Done | The filter for closed and done recommendations allows filtering based on update date, and optionally based on creation date. last_update_date is mandatory when using this filter. |
- last_update_date must include the from or to fields or both.
- operator and creation_date are optional and are added together. Either include both or omit both.
- creation_date must include the from or to fields or both.
- In all of these dates, the format is yyyy-MM-dd .
- The response will include recommendations within the dates {from to} - inclusive.
{
"closed_and_done_recs_dates": {
"last_update_date": {"from": ..., "to": ...},
"operator": AND/OR,
"creation_date": {"from": ..., "to": ...},
}
}
Tag Filters
Name | Description |
---|---|
custom_tags | static tags that relate to a specific resource, these tags are part of the recommendation raw data. |
virtual_tag | each virtual tag represents a collection of custom tags. |
enrichment_tags | keys and values defined by you. |
"custom_tags": {
"negate": false,
"condition" : [
{
"tag": "env",
"eq": [ "dev1", "dev2" ],
"like": [ "test" ]
"operator": "AND"
},
...
]
}
"virtual_tag": {
"uuid": "...",
"eq": [ "...", "...", ... ],
"like": [ "...", "...", ... ]
}
List Filters
These filters contain two fields:
- negate – true/false Default false. Determines include/exclude the values
- eq – An array of values
- type_id – The recommendation type
- service
- region
- linked_account_id
- instance_type
- resource_id
Numeric Filters
- annual_savings_greater_than – Define the numeric value to be used as a filter, to get higher impacting recommendations
- cat_id – Filter by recommendation category, include one or more values in an array. See the values in the table below.
cat_id | Description |
---|---|
1 | Right Sizing |
3 | Commitments |
4 | Terminate |
5 | Unattached |
7 | Generation Upgrade |
999999 | other |