Skip to main content

Illumio Core What's New and Release Notes 23.2

Illumio Core REST API in 23.2.10

The Illumio Core REST API v2 has changed in 23.2.10 in the following ways:

Changed APIs in this Release

In release 23.2.10, there are two minor changes to the existing REST APIs.

traffic_flows_async_queries_download_get

In this API, the optional property draft_policy_decision was added, which describes the draft policy decision of the flow. The value assigned to this property is expected to be a string.

{
	"items": {
		"properties": {
			"draft_policy_decision": {
			"description": "draft policy decision of the flow",
			"type": "string"
		}
	}
}
optional_features_put

In this API, for the required property name an additional predefined value (enum) was added: labels_editing_warning_for_enforcement_mode. This value was added to the existing list:

  • ip_forwarding_firewall_setting

  • ui_analytics

  • illumination_classic

  • ransomware_readiness_dashboard

  • per_rule_flow_log_setting

  • lightning_default

  • labels_editing_warning_for_enforcement_mode

],
	"properties": {
		"name": {
			"description": "Name of the feature",
			"type": "string",
			"enum": [
			   "ip_forwarding_firewall_setting",
			   "ui_analytics",
			   "illumination_classic",
			   "ransomware_readiness_dashboard",
			   "per_rule_flow_log_setting",
			   "lightning_default",
			   "labels_editing_warning_for_enforcement_mode"
			]