IllumioCore
Connects to Illumio Core APIs to perform investigative and restorative actions.
Network Security · Illumio Rapid Ransomware Containment
Details
| ID | IllumioCore |
|---|---|
| Provider | Illumio |
| Category | Network Security |
| From Version | 6.2.0 |
| Docker Image | demisto/illumio:1.0.0.10133006 |
| Supported Modules | Agentix XSIAM |
README
Connects to Illumio Core APIs to perform investigative and restorative actions.
This integration was integrated and tested with version 1.1.2 of Illumio Python SDK.
Configure Illumio Core in Cortex
| Parameter | Description | Required |
|---|---|---|
| Server URL | The URL this integration should connect to. | True |
| Port | The port number to establish the connection. | True |
| API Key Username | The API user for authentication. | True |
| API Secret | The API Key required to authenticate to the service. | True |
| Organization ID | The organization ID to use when calling org-dependent APIs. | True |
| Trust any certificate (not secure) | Indicates whether to allow connections without verifying SSL certificate’s validity. | False |
| Use system proxy settings | Indicates whether to use XSOAR’s system proxy settings to connect to the API. | False |
Commands
You can execute these commands from the CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.
illumio-traffic-analysis
Retrieves traffic flow of a particular port & protocol within the specified time range based on policy decisions.
Base Command
illumio-traffic-analysis
Input
| Argument Name | Description | Required |
|---|---|---|
| port | Port number. | Required |
| protocol | Communication protocol. Supported values are: ‘tcp’ and ‘udp’. Possible values are: tcp, udp. Default is tcp. |
Optional |
| start_time | Start of analysis range. Supported formats: N minutes, N hours, N days, N weeks, N months, N years, yyyy-mm-dd, yyyy-mm-ddTHH:MM:SSZ For example: 01 Mar 2021, 01 Feb 2021 04:45:33, 2022-04-17T14:05:44Z. Default is 1 week ago. |
Optional |
| end_time | End of analysis range. Supported formats: N minutes, N hours, N days, N weeks, N months, N years, yyyy-mm-dd, yyyy-mm-ddTHH:MM:SSZ For example: 01 Mar 2021, 01 Feb 2021 04:45:33, 2022-04-17T14:05:44Z. Default is now. |
Optional |
| policy_decisions | List of policy decisions to include in the search results. Supports comma-separated values. Supported values are: ‘potentially_blocked’, ‘blocked’, ‘unknown’, and ‘allowed’. Default is potentially_blocked, unknown. |
Optional |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.TrafficFlows.src.ip | String | IP of the source. |
| Illumio.TrafficFlows.dst.ip | String | Destination IP address. |
| Illumio.TrafficFlows.dst.workload.hostname | String | Destination workload hostname. |
| Illumio.TrafficFlows.dst.workload.name | String | Destination workload name. |
| Illumio.TrafficFlows.dst.workload.href | String | Destination workload URI. |
| Illumio.TrafficFlows.dst.workload.os_type | String | Destination workload OS type. |
| Illumio.TrafficFlows.dst.workload.labels.href | String | Destination label URI. |
| Illumio.TrafficFlows.dst.workload.labels.key | String | Destination workload label key. |
| Illumio.TrafficFlows.dst.workload.labels.value | String | Destination workload label value. |
| Illumio.TrafficFlows.service.port | Number | Port of the traffic. |
| Illumio.TrafficFlows.service.proto | Number | Protocol number of the traffic. |
| Illumio.TrafficFlows.num_connections | Number | Number of traffic flows reported in connections. |
| Illumio.TrafficFlows.policy_decisions | String | Indicates the policy decision for the flow. Indicates if the traffic flow is allowed, potentially blocked (but allowed), or blocked. |
| Illumio.TrafficFlows.state | String | State of the flow. |
| Illumio.TrafficFlows.flow_direction | String | Flow direction of the traffic. |
| Illumio.TrafficFlows.dst_bi | Number | Bytes received till now by the destination over the flow during the interval. |
| Illumio.TrafficFlows.dst_bo | Number | Bytes sent till now by the destination over the flow during the interval. |
| Illumio.TrafficFlows.timestamp_range.last_detected | Date | Time range when traffic was last detected. |
| Illumio.TrafficFlows.timestamp_range.first_detected | Date | Time range when traffic was first detected. |
Command example
!illumio-traffic-analysis port=8443
Context Example
{
"Illumio": {
"TrafficFlows": [
{
"dst": {
"ip": "127.0.0.1",
"virtual_service": {
"href": "/orgs/1/sec_policy/draft/virtual_services/c28a080c-dummy",
"name": "Trial-117"
}
},
"dst_bi": 0,
"dst_bo": 0,
"flow_direction": "inbound",
"num_connections": 1,
"policy_decision": "potentially_blocked",
"service": {
"port": 8443,
"proto": 6
},
"src": {
"ip": "127.0.0.1"
},
"state": "closed",
"timestamp_range": {
"first_detected": "2022-10-01T10:53:39Z",
"last_detected": "2022-10-01T10:53:39Z"
}
},
{
"dst": {
"ip": "127.0.0.1"
},
"dst_bi": 0,
"dst_bo": 0,
"flow_direction": "outbound",
"num_connections": 2,
"policy_decision": "potentially_blocked",
"service": {
"port": 8443,
"proto": 6,
"user_name": "phantom-worker"
},
"src": {
"ip": "127.0.0.1",
"workload": {
"hostname": "phantom_10.40.1.3",
"href": "/orgs/1/workloads/8d210b4f-dummy",
"os_type": "linux"
}
},
"state": "closed",
"timestamp_range": {
"first_detected": "2022-09-30T08:55:27Z",
"last_detected": "2022-09-30T08:55:27Z"
}
},
{
"dst": {
"ip": "127.0.0.1",
"virtual_service": {
"href": "/orgs/1/sec_policy/draft/virtual_services/c28a080c-dummy",
"name": "Trial-117"
}
},
"dst_bi": 0,
"dst_bo": 0,
"flow_direction": "inbound",
"num_connections": 1,
"policy_decision": "potentially_blocked",
"service": {
"port": 8443,
"proto": 6
},
"src": {
"ip": "127.0.0.1"
},
"state": "closed",
"timestamp_range": {
"first_detected": "2022-10-01T10:18:03Z",
"last_detected": "2022-10-01T10:18:03Z"
}
}
]
}
}
Human Readable Output
Traffic Analysis
Source IP Destination IP Service Port Service Protocol Policy Decision State Flow Direction First Detected Last Detected 127.0.0.1 127.0.0.3 8443 TCP potentially_blocked closed inbound 01 Oct 2022, 10:53 AM 01 Oct 2022, 10:53 AM 127.0.0.2 127.0.0.4 8443 TCP potentially_blocked closed outbound 30 Sep 2022, 08:55 AM 30 Sep 2022, 08:55 AM 127.0.0.6 127.0.0.5 8443 TCP potentially_blocked closed inbound 01 Oct 2022, 10:18 AM 01 Oct 2022, 10:18 AM
illumio-virtual-service-create
Creates a virtual service for a particular port & protocol, which can be further binded to workloads. Until provisioned with the ‘illumio-object-provision’ command, this object will remain in a draft state.
Base Command
illumio-virtual-service-create
Input
| Argument Name | Description | Required |
|---|---|---|
| name | Virtual service name. | Required |
| port | Port number. | Required |
| protocol | Communication protocol. Possible values are: TCP, UDP. Default is TCP. | Optional |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.VirtualService.href | String | Label URI. |
| Illumio.VirtualService.created_at | Date | Virtual service creation time. |
| Illumio.VirtualService.updated_at | Date | Virtual service updated time. |
| Illumio.VirtualService.deleted_at | Date | Virtual service deleted time. |
| Illumio.VirtualService.created_by.href | String | URI of the user who has created the virtual service. |
| Illumio.VirtualService.updated_by.href | String | URI of the user who has updated the virtual service. |
| Illumio.VirtualService.deleted_by.href | String | URI of the user who has deleted the virtual service. |
| Illumio.VirtualService.update_type | String | What type of modification has been done on the virtual service. |
| Illumio.VirtualService.name | String | Name of the virtual service. |
| Illumio.VirtualService.description | String | Description of the virtual service. |
| Illumio.VirtualService.pce_fqdn | String | PCE FQDN to assign to the virtual service. |
| Illumio.VirtualService.service_ports.port | Number | Port of the virtual service. |
| Illumio.VirtualService.service_ports.proto | Number | Proto of the virtual service. |
| Illumio.VirtualService.labels | Unknown | Labels of the virtual service. |
| Illumio.VirtualService.ip_overrides | Unknown | Array of IPs or CIDRs as IP overrides. |
| Illumio.VirtualService.apply_to | String | Firewall rule target for workloads bound to this virtual service: host_only or internal_bridge_network. |
| Illumio.VirtualService.caps | Unknown | Array of permissions for the entity for the current user - an empty array implies read only access. |
| Illumio.VirtualService.service_addresses | Unknown | Service addresses of the virtual service. |
Command example
!illumio-virtual-service-create name=trail-service-test-10002 port=8443 protocol=TCP
Context Example
{
"Illumio": {
"VirtualService": {
"apply_to": "host_only",
"caps": [
"write",
"provision",
"delete"
],
"created_at": "2022-10-03T12:17:53.498Z",
"created_by": {
"href": "/users/68"
},
"href": "/orgs/1/sec_policy/draft/virtual_services/cb620c40-dummy",
"name": "trail-service-test-10002",
"service_ports": [
{
"port": 8443,
"proto": 6
}
],
"update_type": "create",
"updated_at": "2022-10-03T12:17:53.502Z",
"updated_by": {
"href": "/users/68"
}
}
}
}
Human Readable Output
Virtual Service
Successfully created virtual service: /orgs/1/sec_policy/draft/virtual_services/cb620c40-6e54-4875-b81c-8a3f22c9c7fc
Virtual Service HREF Created At Updated At Name Service Port Service Protocol /orgs/1/sec_policy/draft/virtual_services/cb620c40-dummy 03 Oct 2022, 12:17 PM 03 Oct 2022, 12:17 PM trail-service-test-10002 8443 TCP
illumio-service-binding-create
Binds the existing or a new virtual service to the workloads.
Base Command
illumio-service-binding-create
Input
| Argument Name | Description | Required |
|---|---|---|
| workloads | Workload HREFs to bind. Supports comma-separated values. Note: Users can retrieve the list of Href’s by executing the “illumio-workloads-list” or the “illumio-traffic-analysis” command. |
Required |
| virtual_service | Virtual service HREF to bind the workloads to. | Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.ServiceBinding.status | String | Indicates the status of a request. |
| Illumio.ServiceBinding.href | String | Label URI. |
Command example
!illumio-service-binding-create workloads=/orgs/1/workloads/1b34ea55-315c-4a86-afdb-ba8eacf4e1c5 virtual_service=/orgs/1/sec_policy/draft/virtual_services/79cc1d7d-7460-43fc-a3ac-45cf73022bd7
Context Example
{
"Illumio": {
"ServiceBinding": {
"hrefs": [
"/orgs/1/service_bindings/e78f4e7f-dummy"
]
}
}
}
Human Readable Output
Service Binding
Workloads have been bounded to the virtual service successfully
Service Binding HREF Status /orgs/1/service_bindings/e78f4e7f-dummy created
illumio-object-provision
A utility method for provisioning policy objects from draft to active state. Policy objects only affect the network once they’ve been provisioned.
Base Command
illumio-object-provision
Input
| Argument Name | Description | Required |
|---|---|---|
| security_policy_objects | List of security policy object HREFs to provision. Supports comma-separated values. | Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.PolicyState.href | String | Object label URI. |
| Illumio.PolicyState.commit_message | String | Message for the provisioning. |
| Illumio.PolicyState.version | Number | Version of the object. |
| Illumio.PolicyState.workloads_affected | Number | Number of workloads affected. |
| Illumio.PolicyState.created_by.href | String | Created by label URI. |
| Illumio.PolicyState.object_counts.rule_sets | Number | Count of rulesets. |
| Illumio.PolicyState.object_counts.services | Number | Count of services. |
| Illumio.PolicyState.object_counts.ip_lists | Number | Count of IP lists. |
| Illumio.PolicyState.object_counts.firewall_settings | Number | Count of firewall settings. |
| Illumio.PolicyState.object_counts.label_groups | Number | Count of label groups. |
| Illumio.PolicyState.object_counts.secure_connect_gateways | Number | Count of secure connection gateways. |
| Illumio.PolicyState.object_counts.virtual_servers | Number | Count of virtual servers. |
| Illumio.PolicyState.object_counts.enforcement_boudaries | Number | Count of enforcement boundaries. |
| Illumio.PolicyState.object_counts.virtual_services | Number | Count of virtual services. |
| Illumio.PolicyState.provisioned_hrefs | Unknown | List of active hrefs after provisioning. |
Command example
!illumio-object-provision security_policy_objects=/orgs/1/sec_policy/draft/virtual_services/ac9f932a-1934-47d7-90cd-859a4c93a59f
Context Example
{
"Illumio": {
"PolicyState": {
"commit_message": "XSOAR - 2022-10-03T12:18:13.993389\nProvisioning following objects:\n/orgs/1/sec_policy/draft/virtual_services/ac9f932a-1934-47d7-90cd-859a4c93a59f",
"created_at": "2022-10-03T12:18:15.357Z",
"created_by": {
"href": "/users/68"
},
"href": "/orgs/1/sec_policy/dummy",
"object_counts": {
"enforcement_boundaries": 25,
"firewall_settings": 1,
"ip_lists": 27,
"label_groups": 17,
"rule_sets": 11,
"secure_connect_gateways": 0,
"services": 18,
"virtual_servers": 0,
"virtual_services": 371
},
"provisioned_hrefs": [
"/orgs/1/sec_policy/active/virtual_services/ac9f932a-dummy"
],
"version": 2148,
"workloads_affected": 0
}
}
}
Human Readable Output
Provision Objects
Provision is completed for /orgs/1/sec_policy/dummy
Provision Object URI Commit Message Created At /orgs/1/sec_policy/2148 XSOAR - 2022-10-03T12:18:13.993389
Provisioning following objects:
/orgs/1/sec_policy/draft/virtual_services/ac9f932a-1934-47d7-90cd-859a4c93a59f03 Oct 2022, 12:18 PM
illumio-workload-get
Retrieves the details of the workload based on the provided workload’s HREF.
Base Command
illumio-workload-get
Input
| Argument Name | Description | Required |
|---|---|---|
| href | Workload HREF. Note: Users can retrieve the list of Href’s by executing the “illumio-workloads-list” command. |
Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.Workloads.href | String | URI of workload. |
| Illumio.Workloads.deleted | Boolean | Whether this workload has been deleted or not. |
| Illumio.Workloads.delete_type | String | Workload deletion type. |
| Illumio.Workloads.name | String | Interface name. |
| Illumio.Workloads.description | String | The description of this workload. |
| Illumio.Workloads.managed | Boolean | True if the workload is managed, else false. |
| Illumio.Workloads.hostname | String | The hostname of this workload. |
| Illumio.Workloads.service_principal_name | String | The Kerberos Service Principal Name (SPN). |
| Illumio.Workloads.agent_to_pce_certificate_authentication_id | String | PKI Certificate identifier to be used by the PCE for authenticating the VEN. |
| Illumio.Workloads.distinguished_name | String | X.509 Subject distinguished name. |
| Illumio.Workloads.public_ip | String | The public IP address of the server. |
| Illumio.Workloads.external_data_set | String | External data set identifier. |
| Illumio.Workloads.external_data_reference | String | External data reference identifier. |
| Illumio.Workloads.interfaces.name | String | Interface name. |
| Illumio.Workloads.interfaces.link_state | String | Link state. |
| Illumio.Workloads.interfaces.address | String | The IP address to assign to this interface. |
| Illumio.Workloads.interfaces.cidr_block | Number | The number of bits in the subnet /24 is 255.255.255.0. |
| Illumio.Workloads.interfaces.default_gateway_address | String | The IP address of the default gateway. |
| Illumio.Workloads.interfaces.network.href | String | URI of the network. |
| Illumio.Workloads.interfaces.network_detection_mode | String | Network detection mode. |
| Illumio.Workloads.interfaces.friendly_name | String | User-friendly name for interface. |
| Illumio.Workloads.service_provider | String | Service provider. |
| Illumio.Workloads.data_center | String | Data center. |
| Illumio.Workloads.data_center_zone | String | Data center zone. |
| Illumio.Workloads.os_id | String | Our OS identifier. |
| Illumio.Workloads.os_detail | String | Additional OS details - just displayed to the end user. |
| Illumio.Workloads.online | Boolean | If this workload is online. |
| Illumio.Workloads.firewall_coexistence.illumio_primary | Boolean | Illumio is the primary firewall if set to true. |
| Illumio.Workloads.containers_inherit_host_policy | Boolean | This workload will apply the policy it receives both to itself and the containers hosted by it. |
| Illumio.Workloads.blocked_connection_action | String | Firewall action for blocked connections. |
| Illumio.Workloads.labels.href | String | URI of this label. |
| Illumio.Workloads.labels.deleted | Boolean | Assigned labels. |
| Illumio.Workloads.labels.key | String | Key in key-value pair. |
| Illumio.Workloads.labels.value | String | Value in key-value pair. |
| Illumio.Workloads.labels.external_data_set | String | External data set identifier. |
| Illumio.Workloads.labels.external_data_reference | String | External data reference identifier. |
| Illumio.Workloads.labels.created_at | Date | Timestamp when this label was first created. |
| Illumio.Workloads.labels.updated_at | Date | Timestamp when this label was last updated. |
| Illumio.Workloads.labels.created_by.href | String | User who has originally created this label. |
| Illumio.Workloads.labels.updated_by.href | String | User who has last updated this label. |
| Illumio.Workloads.services.uptime_seconds | Number | How long since the last reboot of this box - used as a timestamp for this. |
| Illumio.Workloads.services.created_at | Date | Timestamp when this service was first created. |
| Illumio.Workloads.services.open_service_ports.protocol | Number | Transport protocol. |
| Illumio.Workloads.services.open_service_ports.address | String | The local address this service is bound to. |
| Illumio.Workloads.services.open_service_ports.port | Number | The local port this service is bound to. |
| Illumio.Workloads.services.open_service_ports.process_name | String | The process name (including the full path). |
| Illumio.Workloads.services.open_service_ports.user | String | The user account that the process is running under. |
| Illumio.Workloads.services.open_service_ports.package | String | The RPM/DEB package that the program is part of. |
| Illumio.Workloads.services.open_service_ports.win_service_name | String | Name of the windows service. |
| Illumio.Workloads.vulnerabilities_summary.num_vulnerabilities | Number | Number of vulnerabilities associated with the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_exposure | Number | The aggregated vulnerability port exposure score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.any | Boolean | The boolean value represents if at least one port is exposed to the internet (any rule) on the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.ip_list | Boolean | The boolean value represents if at least one port is exposed to ip_list(s) on the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerability_exposure_score | Number | The aggregated vulnerability exposure score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.vulnerability_score | Number | The aggregated vulnerability score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.max_vulnerability_score | Number | The maximum of all the vulnerability scores associated with the detected_vulnerabilities on the workload. |
| Illumio.Workloads.detected_vulnerabilities.ip_address | String | The IP address of the host where the vulnerability is found. |
| Illumio.Workloads.detected_vulnerabilities.port | Number | The port which is associated with the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.proto | Number | The protocol which is associated with the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.port_exposure | Number | The exposure of the port based on the current policy. |
| Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.any | Boolean | The boolean value represents if the port is exposed to the internet (any rule). |
| Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.ip_list | Boolean | The boolean value represents if the port is exposed to ip_list(s). |
| Illumio.Workloads.detected_vulnerabilities.workload.href | String | The URI of the workload to which this vulnerability belongs to. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.href | String | The URI of the vulnerability class to which this vulnerability belongs to. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.score | Number | The normalized score of the vulnerability within the range of 0 to 100. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.name | String | The title/name of the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability_report.href | String | The URI of the report to which this vulnerability belongs to. |
| Illumio.Workloads.agent.config.mode | String | DEPRECATED AND REPLACED (Use workload enforcement_mode instead) |
| Illumio.Workloads.agent.config.log_traffic | Boolean | True if we want to log traffic events from this workload. |
| Illumio.Workloads.agent.config.security_policy_update_mode | String | Defines the current policy update mode, which can be either adaptive or static based on static policy scopes. |
| Illumio.Workloads.agent.href | String | HREF of the service agent. |
| Illumio.Workloads.agent.secure_connect.matching_issuer_name | String | Issuer name match criteria for certificate used during establishing secure connections. |
| Illumio.Workloads.agent.status.uid | String | The unique ID reported by the server. |
| Illumio.Workloads.agent.status.last_heartbeat_on | Date | The last time (rfc3339 timestamp) a heartbeat was received from this workload. |
| Illumio.Workloads.agent.status.uptime_seconds | Number | How long since the last reboot of this server. Recorded in DB at the time of the last heartbeat. |
| Illumio.Workloads.agent.status.agent_version | String | Agent software version string. |
| Illumio.Workloads.agent.status.managed_since | Date | The time (rfc3339 timestamp) at which this workload became managed by a VEN. |
| Illumio.Workloads.agent.status.fw_config_current | Boolean | If this workload’s firewall config is up to string’. |
| Illumio.Workloads.agent.status.firewall_rule_count | Number | DEPRECATED WITH NO REPLACEMENT: Number of firewall rules currently installed. |
| Illumio.Workloads.agent.status.security_policy_refresh_at | Date | DEPRECATED AND REPLACED (USE security_policy_applied_at and security_policy_received_at INSTEAD). |
| Illumio.Workloads.agent.status.security_policy_applied_at | Date | Last reported time when policy was applied (UTC). |
| Illumio.Workloads.agent.status.security_policy_received_at | Date | Last reported time when policy was received (UTC). |
| Illumio.Workloads.agent.status.agent_health_errors.errors | Unknown | Errors associated with the security policy. |
| Illumio.Workloads.agent.status.agent_health_errors.warnings | Unknown | Warnings associated with the security policy. |
| Illumio.Workloads.agent.status.agent_health.type | String | This field describes the error or the warning type. |
| Illumio.Workloads.agent.status.agent_health.severity | String | Severity of the error type. |
| Illumio.Workloads.agent.status.agent_health.audit_event | String | The URI of the audit event that was generated for the corresponding error or warning. |
| Illumio.Workloads.agent.status.security_policy_sync_state | String | Current state of security policy. |
| Illumio.Workloads.agent.active_pce_fqdn | String | The FQDN of the PCE that received the agent’s last heartbeat. |
| Illumio.Workloads.agent.target_pce_fqdn | String | The FQDN of the PCE the agent will use for future connections. |
| Illumio.Workloads.agent.type | String | Agent type. |
| Illumio.Workloads.ven.href | String | The URI of the VEN that manages this workload. This replaces the ‘agent’ field of this object. |
| Illumio.Workloads.ven.hostname | String | The hostname of the host managed by the VEN, only displayed in expanded representations. |
| Illumio.Workloads.ven.name | String | The friendly name of the VEN, only displayed in expanded representations. |
| Illumio.Workloads.ven.status | String | Status of the VEN, only displayed in expanded representations. |
| Illumio.Workloads.enforcement_mode | String | Workload’s enforcement mode. |
| Illumio.Workloads.selectively_enforced_services.href | String | Workload’s selective enforcement mode. |
| Illumio.Workloads.created_at | Date | The time (rfc3339 timestamp) at which this workload was created. |
| Illumio.Workloads.updated_at | Date | The time (rfc3339 timestamp) at which this workload was last updated. |
| Illumio.Workloads.deleted_at | Date | The time (rfc3339 timestamp) at which this workload was deleted. |
| Illumio.Workloads.created_by.href | String | The URI of the user who has created this workload. |
| Illumio.Workloads.updated_by.href | String | The URI of the user who has last updated this workload. |
| Illumio.Workloads.deleted_by.href | String | The URI of the user who has deleted this workload. |
| Illumio.Workloads.container_cluster.href | String | Container cluster URI. |
| Illumio.Workloads.container_cluster.name | String | Container cluster name. |
| Illumio.Workloads.ike_authentication_certificate | String | IKE authentication certificate for certificate-based Secure Connect and Machine Auth connections. |
Command example
!illumio-workload-get href=/orgs/1/workloads/b0426bc0-c6c6-4ef8-bd8a-2a1771f97503
Context Example
{
"Illumio": {
"Workload": {
"agent": {
"config": {
"log_traffic": false,
"mode": "illuminated",
"security_policy_update_mode": "adaptive",
"visibility_level": "flow_summary"
},
"href": "/orgs/1/agents/dummy",
"secure_connect": {
"matching_issuer_name": ""
},
"status": {
"agent_version": "20.2.0",
"firewall_rule_count": 0,
"fw_config_current": false,
"last_heartbeat_on": "2020-10-22T01:27:43.213Z",
"managed_since": "2020-10-22T01:27:42.228Z",
"security_policy_sync_state": "syncing",
"status": "active",
"uptime_seconds": 0
},
"type": "Host",
"unpair_allowed": true
},
"blocked_connection_action": "drop",
"caps": [
"write"
],
"containers_inherit_host_policy": false,
"created_at": "2020-10-22T01:27:42.201Z",
"created_by": {
"href": "/orgs/1/agents/dummy"
},
"deleted": false,
"enforcement_mode": "visibility_only",
"hostname": "perf-workload-56770",
"href": "/orgs/1/workloads/b0426bc0-dummy",
"interfaces": [
{
"address": "0.0.0.0",
"cidr_block": 64,
"loopback": false,
"name": "eth0",
"network": {
"href": "/orgs/1/networks/04ac9819-dummy"
},
"network_detection_mode": "single_private_brn"
},
{
"address": "127.0.0.1",
"cidr_block": 8,
"default_gateway_address": "127.0.0.1",
"loopback": false,
"name": "eth0",
"network": {
"href": "/orgs/1/networks/6736f2b5-dummy"
},
"network_detection_mode": "single_private_brn"
}
],
"online": false,
"os_detail": "4.4.0-97-generic #120-Ubuntu SMP Tue Sep 19 17:28:18 UTC 2017 (Ubuntu 16.04.1 LTS)",
"os_id": "ubuntu-x86_64-xenial",
"public_ip": "127.0.0.1",
"services": {
"open_service_ports": [
{
"address": "0.0.0.0",
"port": 161,
"process_name": "snmpd",
"protocol": 6,
"user": "root"
},
{
"address": "0.0.0.0",
"port": 53,
"process_name": "bind",
"protocol": 6,
"user": "root"
},
{
"address": "0.0.0.0",
"port": 5432,
"process_name": "postgres",
"protocol": 6,
"user": "root"
},
{
"address": "0.0.0.0",
"port": 67,
"process_name": "dhcpd",
"protocol": 17,
"user": "root"
},
{
"address": "0.0.0.0",
"port": 80,
"process_name": "httpd",
"protocol": 6,
"user": "root"
}
],
"uptime_seconds": 120708
},
"updated_at": "2022-10-03T11:28:39.203Z",
"updated_by": {
"href": "/users/68"
},
"ven": {
"href": "/orgs/1/vens/b0426bc0-dummy"
},
"visibility_level": "flow_summary"
}
}
}
Human Readable Output
Workload Details
Workload HREF Created At Updated At Hostname /orgs/1/workloads/b0426bc0-dummy 22 Oct 2020, 01:27 AM 03 Oct 2022, 11:28 AM perf-workload-56770
illumio-workloads-list
Retrieves the list of workloads based on the provided filters.
Base Command
illumio-workloads-list
Input
| Argument Name | Description | Required |
|---|---|---|
| max_results | Maximum number of workloads to return in the result set. The value must be positive integer. High value will result in performance issue. Note: 2500 is the optimum value. Default is 500. |
Optional |
| name | Workload name. | Optional |
| hostname | Workload hostname. | Optional |
| ip_address | Workload IP address. Supports partial matches. | Optional |
| online | True to return online workloads, false to return offline workloads. Leave empty to return both. Possible values are: true, false. | Optional |
| managed | True to return managed workloads, false to return unmanaged workloads. Leave empty to return both. Possible values are: true, false. | Optional |
| labels | Workload labels. | Optional |
| enforcement_mode | Workload enforcement mode. Possible values are: visibility_only, full, idle, selective. | Optional |
| visibility_level | Workload visibility level. Possible values are: flow_full_detail, flow_summary, flow_drops, flow_off, enhanced_data_collection. | Optional |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.Workloads.href | String | URI of workload. |
| Illumio.Workloads.deleted | Boolean | Whether this workload has been deleted or not. |
| Illumio.Workloads.delete_type | String | Workload deletion type. |
| Illumio.Workloads.name | String | Interface name. |
| Illumio.Workloads.description | String | The description of this workload. |
| Illumio.Workloads.managed | Boolean | True if the workload is managed, else false. |
| Illumio.Workloads.hostname | String | The hostname of this workload. |
| Illumio.Workloads.service_principal_name | String | The Kerberos Service Principal Name (SPN). |
| Illumio.Workloads.agent_to_pce_certificate_authentication_id | String | PKI Certificate identifier to be used by the PCE for authenticating the VEN. |
| Illumio.Workloads.distinguished_name | String | X.509 Subject distinguished name. |
| Illumio.Workloads.public_ip | String | The public IP address of the server. |
| Illumio.Workloads.external_data_set | String | External data set identifier. |
| Illumio.Workloads.external_data_reference | String | External data reference identifier. |
| Illumio.Workloads.interfaces.name | String | Interface name. |
| Illumio.Workloads.interfaces.link_state | String | Link state. |
| Illumio.Workloads.interfaces.address | String | The IP address to assign to this interface. |
| Illumio.Workloads.interfaces.cidr_block | Number | The number of bits in the subnet /24 is 255.255.255.0. |
| Illumio.Workloads.interfaces.default_gateway_address | String | The IP address of the default gateway. |
| Illumio.Workloads.interfaces.network.href | String | URI of the network. |
| Illumio.Workloads.interfaces.network_detection_mode | String | Network detection mode. |
| Illumio.Workloads.interfaces.friendly_name | String | User-friendly name for interface. |
| Illumio.Workloads.service_provider | String | Service provider. |
| Illumio.Workloads.data_center | String | Data center. |
| Illumio.Workloads.data_center_zone | String | Data center zone. |
| Illumio.Workloads.os_id | String | Our OS identifier. |
| Illumio.Workloads.os_detail | String | Additional OS details - just displayed to the end user. |
| Illumio.Workloads.online | Boolean | If this workload is online. |
| Illumio.Workloads.firewall_coexistence.illumio_primary | Boolean | Illumio is the primary firewall if set to true. |
| Illumio.Workloads.containers_inherit_host_policy | Boolean | This workload will apply the policy it receives both to itself and the containers hosted by it. |
| Illumio.Workloads.blocked_connection_action | String | Firewall action for blocked connections. |
| Illumio.Workloads.labels.href | String | URI of this label. |
| Illumio.Workloads.labels.deleted | Boolean | Assigned labels. |
| Illumio.Workloads.labels.key | String | Key in key-value pair. |
| Illumio.Workloads.labels.value | String | Value in key-value pair. |
| Illumio.Workloads.labels.external_data_set | String | External data set identifier. |
| Illumio.Workloads.labels.external_data_reference | String | External data reference identifier. |
| Illumio.Workloads.labels.created_at | Date | Timestamp when this label was first created. |
| Illumio.Workloads.labels.updated_at | Date | Timestamp when this label was last updated. |
| Illumio.Workloads.labels.created_by.href | String | User who has originally created this label. |
| Illumio.Workloads.labels.updated_by.href | String | User who has last updated this label. |
| Illumio.Workloads.services.uptime_seconds | Number | How long since the last reboot of this box - used as a timestamp for this. |
| Illumio.Workloads.services.created_at | Date | Timestamp when this service was first created. |
| Illumio.Workloads.services.open_service_ports.protocol | Number | Transport protocol. |
| Illumio.Workloads.services.open_service_ports.address | String | The local address this service is bound to. |
| Illumio.Workloads.services.open_service_ports.port | Number | The local port this service is bound to. |
| Illumio.Workloads.services.open_service_ports.process_name | String | The process name (including the full path). |
| Illumio.Workloads.services.open_service_ports.user | String | The user account that the process is running under. |
| Illumio.Workloads.services.open_service_ports.package | String | The RPM/DEB package that the program is part of. |
| Illumio.Workloads.services.open_service_ports.win_service_name | String | Name of the windows service. |
| Illumio.Workloads.vulnerabilities_summary.num_vulnerabilities | Number | Number of vulnerabilities associated with the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_exposure | Number | The aggregated vulnerability port exposure score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.any | Boolean | The boolean value represents if at least one port is exposed to the internet (any rule) on the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.ip_list | Boolean | The boolean value represents if at least one port is exposed to ip_list(s) on the workload. |
| Illumio.Workloads.vulnerabilities_summary.vulnerability_exposure_score | Number | The aggregated vulnerability exposure score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.vulnerability_score | Number | The aggregated vulnerability score of the workload across all the vulnerable ports. |
| Illumio.Workloads.vulnerabilities_summary.max_vulnerability_score | Number | The maximum of all the vulnerability scores associated with the detected_vulnerabilities on the workload. |
| Illumio.Workloads.detected_vulnerabilities.ip_address | String | The IP address of the host where the vulnerability is found. |
| Illumio.Workloads.detected_vulnerabilities.port | Number | The port which is associated with the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.proto | Number | The protocol which is associated with the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.port_exposure | Number | The exposure of the port based on the current policy. |
| Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.any | Boolean | The boolean value represents if the port is exposed to the internet (any rule). |
| Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.ip_list | Boolean | The boolean value represents if the port is exposed to ip_list(s). |
| Illumio.Workloads.detected_vulnerabilities.workload.href | String | The URI of the workload to which this vulnerability belongs to. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.href | String | The URI of the vulnerability class to which this vulnerability belongs to. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.score | Number | The normalized score of the vulnerability within the range of 0 to 100. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability.name | String | The title/name of the vulnerability. |
| Illumio.Workloads.detected_vulnerabilities.vulnerability_report.href | String | The URI of the report to which this vulnerability belongs to. |
| Illumio.Workloads.agent.config.mode | String | DEPRECATED AND REPLACED (Use workload enforcement_mode instead) |
| Illumio.Workloads.agent.config.log_traffic | Boolean | True if we want to log traffic events from this workload. |
| Illumio.Workloads.agent.config.security_policy_update_mode | String | Defines the current policy update mode, which can be either adaptive or static based on static policy scopes. |
| Illumio.Workloads.agent.href | String | HREF of the service agent. |
| Illumio.Workloads.agent.secure_connect.matching_issuer_name | String | Issuer name match criteria for certificate used during establishing secure connections. |
| Illumio.Workloads.agent.status.uid | String | The unique ID reported by the server. |
| Illumio.Workloads.agent.status.last_heartbeat_on | Date | The last time (rfc3339 timestamp) a heartbeat was received from this workload. |
| Illumio.Workloads.agent.status.uptime_seconds | Number | How long since the last reboot of this server. Recorded in DB at the time of the last heartbeat. |
| Illumio.Workloads.agent.status.agent_version | String | Agent software version string. |
| Illumio.Workloads.agent.status.managed_since | Date | The time (rfc3339 timestamp) at which this workload became managed by a VEN. |
| Illumio.Workloads.agent.status.fw_config_current | Boolean | If this workload’s firewall config is up to string’. |
| Illumio.Workloads.agent.status.firewall_rule_count | Number | DEPRECATED WITH NO REPLACEMENT: Number of firewall rules currently installed. |
| Illumio.Workloads.agent.status.security_policy_refresh_at | Date | DEPRECATED AND REPLACED (USE security_policy_applied_at and security_policy_received_at INSTEAD). |
| Illumio.Workloads.agent.status.security_policy_applied_at | Date | Last reported time when policy was applied (UTC). |
| Illumio.Workloads.agent.status.security_policy_received_at | Date | Last reported time when policy was received (UTC). |
| Illumio.Workloads.agent.status.agent_health_errors.errors | Unknown | Errors associated with the security policy. |
| Illumio.Workloads.agent.status.agent_health_errors.warnings | Unknown | Warnings associated with the security policy. |
| Illumio.Workloads.agent.status.agent_health.type | String | This field describes the error or the warning type. |
| Illumio.Workloads.agent.status.agent_health.severity | String | Severity of the error type. |
| Illumio.Workloads.agent.status.agent_health.audit_event | String | The URI of the audit event that was generated for the corresponding error or warning. |
| Illumio.Workloads.agent.status.security_policy_sync_state | String | Current state of security policy. |
| Illumio.Workloads.agent.active_pce_fqdn | String | The FQDN of the PCE that received the agent’s last heartbeat. |
| Illumio.Workloads.agent.target_pce_fqdn | String | The FQDN of the PCE the agent will use for future connections. |
| Illumio.Workloads.agent.type | String | Agent type. |
| Illumio.Workloads.ven.href | String | The URI of the VEN that manages this workload. This replaces the ‘agent’ field of this object. |
| Illumio.Workloads.ven.hostname | String | The hostname of the host managed by the VEN, only displayed in expanded representations. |
| Illumio.Workloads.ven.name | String | The friendly name of the VEN, only displayed in expanded representations. |
| Illumio.Workloads.ven.status | String | Status of the VEN, only displayed in expanded representations. |
| Illumio.Workloads.enforcement_mode | String | Workload’s enforcement mode. |
| Illumio.Workloads.selectively_enforced_services.href | String | Workload’s selective enforcement mode. |
| Illumio.Workloads.created_at | Date | The time (rfc3339 timestamp) at which this workload was created. |
| Illumio.Workloads.updated_at | Date | The time (rfc3339 timestamp) at which this workload was last updated. |
| Illumio.Workloads.deleted_at | Date | The time (rfc3339 timestamp) at which this workload was deleted. |
| Illumio.Workloads.created_by.href | String | The URI of the user who has created this workload. |
| Illumio.Workloads.updated_by.href | String | The URI of the user who has last updated this workload. |
| Illumio.Workloads.deleted_by.href | String | The URI of the user who has deleted this workload. |
| Illumio.Workloads.container_cluster.href | String | Container cluster URI. |
| Illumio.Workloads.container_cluster.name | String | Container cluster name. |
| Illumio.Workloads.ike_authentication_certificate | String | IKE authentication certificate for certificate-based Secure Connect and Machine Auth connections. |
Command example
!illumio-workloads-list max_results=2
Context Example
{
"Illumio": {
"Workloads": [
{
"agent": {
"config": {
"log_traffic": false,
"mode": "illuminated",
"visibility_level": "flow_summary"
}
},
"caps": [
"write"
],
"created_at": "2022-03-14T13:16:32.82656Z",
"created_by": {
"href": "/users/22"
},
"deleted": false,
"description": "Updated by System Administrator [ven02375.service-now.com] at July 2, 2022 3:44:48 PM PDT",
"enforcement_mode": "visibility_only",
"hostname": "Perf_test 18665",
"href": "/orgs/1/workloads/f550a74a-dummy",
"online": true,
"updated_at": "2022-09-29T12:16:53.286105Z",
"updated_by": {
"href": "/users/68"
},
"visibility_level": "flow_summary"
},
{
"agent": {
"config": {
"log_traffic": false,
"mode": "selective",
"security_policy_update_mode": "adaptive",
"visibility_level": "flow_summary"
},
"href": "/orgs/1/agents/47024-dummy",
"secure_connect": {
"matching_issuer_name": ""
},
"status": {
"agent_version": "20.2.0",
"firewall_rule_count": 0,
"fw_config_current": false,
"last_heartbeat_on": "2020-10-21T23:50:44.993761Z",
"managed_since": "2020-10-21T23:50:44.473703Z",
"security_policy_sync_state": "syncing",
"status": "active",
"uptime_seconds": 0
},
"type": "Host",
"unpair_allowed": true
},
"blocked_connection_action": "drop",
"caps": [
"write"
],
"containers_inherit_host_policy": false,
"created_at": "2020-10-21T23:50:44.451732Z",
"created_by": {
"href": "/orgs/1/agents/dummy"
},
"deleted": false,
"enforcement_mode": "selective",
"hostname": "perf-workload-47024",
"href": "/orgs/1/workloads/8fc0f693-dummy",
"interfaces": [
{
"address": "ffff::fff:f:f:ffff",
"cidr_block": 64,
"loopback": false,
"name": "eth0",
"network": {
"href": "/orgs/1/networks/04ac9819-dummy"
},
"network_detection_mode": "single_private_brn"
},
{
"address": "0.0.0.0",
"cidr_block": 8,
"default_gateway_address": "10.0.0.1",
"loopback": false,
"name": "eth0",
"network": {
"href": "/orgs/1/networks/6736f2b5-dummy"
},
"network_detection_mode": "single_private_brn"
}
],
"online": false,
"os_detail": "4.4.0-97-generic #120-Ubuntu SMP Tue Sep 19 17:28:18 UTC 2017 (Ubuntu 16.04.1 LTS)",
"os_id": "ubuntu-x86_64-xenial",
"public_ip": "127.0.0.1",
"updated_at": "2022-10-03T12:09:34.197911Z",
"updated_by": {
"href": "/users/68"
},
"ven": {
"href": "/orgs/1/vens/8fc0f693-dummy"
},
"visibility_level": "flow_summary"
}
]
}
}
Human Readable Output
Workloads
Workload HREF Hostname Description Enforcement Mode Visibility Level IP Address Created At Updated At /orgs/1/workloads/f550a74a-dummy Perf_test 18665 Updated by System Administrator [ven02375.service-now.com] at July 2, 2022 3:44:48 PM PDT visibility_only flow_summary 14 Mar 2022, 01:16 PM 29 Sep 2022, 12:16 PM /orgs/1/workloads/8fc0f693-dummy perf-workload-47024 selective flow_summary 0.0.0.0 21 Oct 2020, 11:50 PM 03 Oct 2022, 12:09 PM
illumio-enforcement-boundary-create
Creates an enforcement boundary for a particular port/protocol. After completion of this command, provisioning will be done using the “illumio-object-provision” command.
Base Command
illumio-enforcement-boundary-create
Input
| Argument Name | Description | Required |
|---|---|---|
| name | Enforcement boundary name. | Required |
| port | Port number. | Required |
| protocol | Communication protocol. Possible values are: TCP, UDP. Default is TCP. | Optional |
| providers | List of HREFs of entities to be used as providers for the rule, or “ams” for all workloads. Supports comma separated values. | Required |
| consumers | List of HREFs of entities to be used as consumers for the rule, or “ams” for all workloads. Supports comma separated values. | Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.EnforcementBoundary.href | String | Enforcement boundary label URI. |
| Illumio.EnforcementBoundary.created_at | Date | Enforcement boundary creation time. |
| Illumio.EnforcementBoundary.updated_at | Date | Enforcement boundary updated time. |
| Illumio.EnforcementBoundary.deleted_at | Date | Enforcement boundary deleted time. |
| Illumio.EnforcementBoundary.created_by.href | String | URI of the user who has created the enforcement boundary. |
| Illumio.EnforcementBoundary.updated_by.href | String | URI of the user who has updated the enforcement boundary. |
| Illumio.EnforcementBoundary.deleted_by.href | String | URI of the user who has deleted the enforcement boundary. |
| Illumio.EnforcementBoundary.update_type | String | Type of the modification done on the enforcement boundary. |
| Illumio.EnforcementBoundary.name | String | Name of the enforcement boundary. |
| Illumio.EnforcementBoundary.providers.actors | String | All managed workloads (‘ams’). |
| Illumio.EnforcementBoundary.providers.label.href | String | URI of the provider label. |
| Illumio.EnforcementBoundary.providers.label_group.href | String | URI of the provider label group. |
| Illumio.EnforcementBoundary.providers.ip_list.href | String | Providers IP list label URI. |
| Illumio.EnforcementBoundary.consumers.actors | String | All managed workloads (‘ams’). |
| Illumio.EnforcementBoundary.consumers.label.href | String | URI of the consumer label. |
| Illumio.EnforcementBoundary.consumers.label_group.href | String | URI of the consumer label group. |
| Illumio.EnforcementBoundary.consumers.ip_list.href | String | Consumers IP list label URI. |
| Illumio.EnforcementBoundary.ingress_service.port | Number | Port of the ingress services. |
| Illumio.EnforcementBoundary.ingress_services.proto | Number | Protocol of the ingress services. |
| Illumio.EnforcementBoundary.ingress_services.href | String | URI of the ingress service. |
| Illumio.EnforcementBoundary.caps | Unknown | Array of permissions for the entity to the current user - an empty array implies read only access. |
Command example
!illumio-enforcement-boundary-create consumers=ams providers=ams name=trail-service-test-10002 port=8443
Context Example
{
"Illumio": {
"EnforcementBoundary": {
"consumers": [
{
"actors": "ams"
}
],
"href": "/orgs/1/sec_policy/draft/enforcement_boundaries/dummy",
"ingress_services": [
{
"port": 8443,
"proto": 6
}
],
"name": "trail-service-test-10002",
"providers": [
{
"actors": "ams"
}
]
}
}
}
Human Readable Output
Enforcement Boundary
Enforcement Boundary HREF Name Ingress Services /orgs/1/sec_policy/draft/enforcement_boundaries/dummy trail-service-test-10002 8443-TCP
illumio-enforcement-mode-update
Update the Enforcement Mode for one or more workloads.
Base Command
illumio-enforcement-mode-update
Input
| Argument Name | Description | Required |
|---|---|---|
| enforcement_mode | New enforcement mode to apply. Possible values are: Idle, Visibility_only, Selective, Full. | Required |
| workloads | List of workload HREFs to update. Supports comma separated values. Note: Users can retrieve the list of Href’s by executing the “illumio-workloads-list” command. |
Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.UpdateStatuses.href | String | Enforcement mode update workload URI. |
| Illumio.UpdateStatuses.status | String | Whether the operation was successful or not. |
Command example
!illumio-enforcement-mode-update enforcement_mode=Visibility_only workloads=/orgs/1/workloads/b98b4456-e24b-4c01-a3b8-f53cd85f1fab
Context Example
{
"Illumio": {
"UpdateStatuses": {
"href": "/orgs/1/workloads/b98b4456-dummy",
"status": "Updated"
}
}
}
Human Readable Output
Workload Enforcement Update
Successfully updated enforcement mode for 1 workloads, 0 workloads failed to update
Workload HREF Status /orgs/1/workloads/b98b4456-dummy Updated
illumio-ip-list-get
Retrieves the list of IPs based on the name of the IP list.
Base Command
illumio-ip-list-get
Input
| Argument Name | Description | Required |
|---|---|---|
| href | URI of the IP list. Note: Users can retrieve the list of Href’s of IP by executing the “illumio-ip-lists-get” command. |
Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.IPLists.href | String | URI of the IP list. |
| Illumio.IPLists.description | String | Description of IP list. |
| Illumio.IPLists.external_data_set | String | External data set identifier. |
| Illumio.IPLists.external_data_reference | String | External data reference identifier. |
| Illumio.IPLists.created_at | Date | Time stamp when this IP list was first created. |
| Illumio.IPLists.updated_at | Date | Time stamp when this IP List was last updated. |
| Illumio.IPLists.deleted_at | Date | Time stamp when this IP List was deleted. |
| Illumio.IPLists.created_by.href | String | User who originally created this IP List. |
| Illumio.IPLists.updated_by.href | String | User who last updated this IP List. |
| Illumio.IPLists.deleted_by.href | String | User who has deleted this IP List. |
| Illumio.IPLists.name | String | Name (must be unique). |
| Illumio.IPLists.ip_ranges.description | String | Description of given IP range. |
| Illumio.IPLists.ip_ranges.from_ip | String | IP address or a low end of IP range. Might be specified with CIDR notation. |
| Illumio.IPLists.ip_ranges.to_ip | String | High end of an IP range. |
| Illumio.IPLists.ip_ranges.exclusion | String | Whether this IP address is an exclusion. Exclusions must be a strict subset of inclusive IP addresses. |
| Illumio.IPLists.fqdns.fqdn | String | Fully qualified domain name. |
| Illumio.IPLists.fqdns.description | String | Description of FQDN. |
Command example
!illumio-ip-list-get href=/orgs/1/sec_policy/draft/ip_lists/35
Context Example
{
"Illumio": {
"IPList": {
"created_at": "2021-05-14T08:17:05.569Z",
"created_by": {
"href": "/users/15"
},
"description": "PCE ip range",
"fqdns": [
{
"description": "2x2devtestscr1.ilabs.io fqdn description",
"fqdn": "2x2devtestscr1.ilabs.io"
}
],
"href": "/orgs/1/sec_policy/draft/ip_lists/dummy",
"ip_ranges": [
{
"description": "PCE ip tange",
"exclusion": false,
"from_ip": "127.0.0.1",
"to_ip": "127.0.0.1"
}
],
"name": "PCE ip range",
"updated_at": "2021-05-14T08:17:05.572Z",
"updated_by": {
"href": "/users/15"
}
}
}
}
Human Readable Output
IP List Details
IP List HREF Name Created At Updated At IP Ranges FQDNs /orgs/1/sec_policy/draft/ip_lists/dummy PCE ip range 14 May 2021, 08:17 AM 14 May 2021, 08:17 AM 127.0.0.1 - 127.0.0.1 2x2devtestscr1.ilabs.io
illumio-ip-lists-get
Retrieves the list of IPs based on the query parameters.
Base Command
illumio-ip-lists-get
Input
| Argument Name | Description | Required |
|---|---|---|
| description | Description of IP list to return. Supports partial matches. | Optional |
| fqdn | IP lists matching fqdn. Supports partial matches. | Optional |
| ip_address | IP address matching IP list(s) to return. | Optional |
| max_results | Maximum number of IP Lists to return. The value must be positive integer. High value will result in performance issue. Note: 2500 is the optimum value. Default is 500. |
Optional |
| name | Name of IP list(s) to return. Supports partial matches. | Optional |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.IPLists.href | String | URI of the IP list. |
| Illumio.IPLists.description | String | Description of IP list. |
| Illumio.IPLists.external_data_set | String | External data set identifier. |
| Illumio.IPLists.external_data_reference | String | External data reference identifier. |
| Illumio.IPLists.created_at | Date | Time stamp when this IP list was first created. |
| Illumio.IPLists.updated_at | Date | Time stamp when this IP List was last updated. |
| Illumio.IPLists.deleted_at | Date | Time stamp when this IP List was deleted. |
| Illumio.IPLists.created_by.href | String | User who originally created this IP List. |
| Illumio.IPLists.updated_by.href | String | User who last updated this IP List. |
| Illumio.IPLists.deleted_by.href | String | User who has deleted this IP List. |
| Illumio.IPLists.name | String | Name (must be unique). |
| Illumio.IPLists.ip_ranges.description | String | Description of given IP range. |
| Illumio.IPLists.ip_ranges.from_ip | String | IP address or a low end of IP range. Might be specified with CIDR notation. |
| Illumio.IPLists.ip_ranges.to_ip | String | High end of an IP range. |
| Illumio.IPLists.ip_ranges.exclusion | Boolean | Whether this IP address is an exclusion. Exclusions must be a strict subset of inclusive IP addresses. |
| Illumio.IPLists.fqdns.fqdn | String | Fully qualified domain name. |
| Illumio.IPLists.fqdns.description | String | Description of FQDN. |
Command example
!illumio-ip-lists-get max_results=2
Context Example
{
"Illumio": {
"IPLists": [
{
"created_at": "2019-04-05T19:58:39.545Z",
"created_by": {
"href": "/users/0"
},
"href": "/orgs/1/sec_policy/draft/ip_lists/dummy-1",
"ip_ranges": [
{
"exclusion": false,
"from_ip": "127.0.0.1"
},
{
"exclusion": false,
"from_ip": "127.0.0.1"
}
],
"name": "Any (0.0.0.0/0 and ::/0)",
"updated_at": "2019-04-05T19:58:39.552Z",
"updated_by": {
"href": "/users/0"
}
},
{
"created_at": "2022-08-17T07:31:45.037Z",
"created_by": {
"href": "/users/65"
},
"description": "",
"href": "/orgs/1/sec_policy/draft/ip_lists/dummy-2",
"ip_ranges": [
{
"exclusion": false,
"from_ip": "0.0.0.0"
}
],
"name": "test-xyz",
"updated_at": "2022-08-17T07:31:45.040Z",
"updated_by": {
"href": "/users/65"
}
}
]
}
}
Human Readable Output
IP Lists
IP List HREF Name Created At Updated At IP Ranges /orgs/1/sec_policy/draft/ip_lists/dummy-1 Any (0.0.0.0/0 and ::/0) 05 Apr 2019, 07:58 PM 05 Apr 2019, 07:58 PM 127.0.0.1,127.0.0.1 /orgs/1/sec_policy/draft/ip_lists/dummy-2 test-xyz 17 Aug 2022, 07:31 AM 17 Aug 2022, 07:31 AM 127.0.0.1
illumio-ruleset-create
Creates a ruleset with a unique name. Until provisioned with the ‘illumio-object-provision’ command, this object will remain in a draft state.
Base Command
illumio-ruleset-create
Input
| Argument Name | Description | Required |
|---|---|---|
| name | Ruleset name. | Required |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.Ruleset.href | String | Label URI. |
| Illumio.Ruleset.created_at | Date | Ruleset creation time. |
| Illumio.Ruleset.updated_at | Date | Ruleset updation time. |
| Illumio.Ruleset.deleted_at | Date | Ruleset deletion time. |
| Illumio.Ruleset.created_by.href | String | URI of the user who has created the ruleset. |
| Illumio.Ruleset.updated_by.href | String | URI of the user who has updated the ruleset. |
| Illumio.Ruleset.deleted_by.href | String | URI of the user who has deleted the ruleset. |
| Illumio.Ruleset.update_type | String | Type of modification done on the ruleset. |
| Illumio.Ruleset.name | String | Name of the ruleset. |
| Illumio.Ruleset.description | String | Description of the ruleset. |
| Illumio.Ruleset.enabled | Boolean | Whether the ruleset is enabled or not. |
| Illumio.Ruleset.scopes | Unknown | Scope of the ruleset. |
| Illumio.Ruleset.rules | Unknown | Rules in the ruleset. |
| Illumio.Ruleset.ip_tables_rules | Unknown | Array of IP table rules in the ruleset. |
| Illumio.Ruleset.caps | Unknown | Array of permissions for the entity to the current user - an empty array implies read-only access. |
Command example
!illumio-ruleset-create name=trial-ruleset-test-10002
Context Example
{
"Illumio": {
"Ruleset": {
"caps": [
"write",
"provision"
],
"created_at": "2022-10-03T12:19:27.141Z",
"created_by": {
"href": "/users/68"
},
"enabled": true,
"href": "/orgs/1/sec_policy/draft/rule_sets/dummy",
"name": "trial-ruleset-test-10002",
"update_type": "create",
"updated_at": "2022-10-03T12:19:27.141Z",
"updated_by": {
"href": "/users/68"
}
}
}
}
Human Readable Output
Ruleset trial-ruleset-test-10002 has been created successfully
Ruleset HREF Name Created At Updated At Enabled Caps /orgs/1/sec_policy/draft/rule_sets/dummy trial-ruleset-test-10002 03 Oct 2022, 12:19 PM 03 Oct 2022, 12:19 PM true write,
provision
illumio-rule-create
Creates & assigns rules to a particular ruleset. Added or updated Rules will remain in draft state until their containing Rule Set is provisioned using the “illumio-object-provision” command.
Base Command
illumio-rule-create
Input
| Argument Name | Description | Required |
|---|---|---|
| ruleset_href | HREF of the ruleset in which to create the rule. | Required |
| providers | HREFs of entities to be used as providers for the rule. For all workloads provide “ams”. Supports comma-separated values. | Required |
| consumers | HREFs of entities to be used as consumers for the rule. For all workloads provide “ams”. Supports comma-separated values. | Required |
| resolve_providers_as | Provider objects the rule should apply to. Supports comma separated values. Supported values are: ‘workloads’ and ‘virtual_services’. Default is workloads. |
Optional |
| resolve_consumers_as | Consumer objects the rule should apply to. Supports comma separated values. Supported values are: ‘workloads’ and ‘virtual_services’. Default is workloads. |
Optional |
| ingress_services | Service URIs. Supports comma separated values. | Optional |
Context Output
| Path | Type | Description |
|---|---|---|
| Illumio.Rule.href | String | Label URI. |
| Illumio.Rule.created_at | Date | Rule creation time. |
| Illumio.Rule.updated_at | Date | Rule updated time. |
| Illumio.Rule.deleted_at | Date | Rule deleted time. |
| Illumio.Rule.created_by.href | String | URI of the user who has created the rule. |
| Illumio.Rule.updated_by.href | String | URI of the user who has updated the rule. |
| Illumio.Rule.deleted_by | String | URI of the user who has deleted the rule. |
| Illumio.Rule.update_type | String | Type of modification done on the rule. |
| Illumio.Rule.description | String | Description of the rule. |
| Illumio.Rule.enabled | Boolean | Whether the rule is enabled or not. |
| Illumio.Rule.providers.label.href | String | Providers label URI. |
| Illumio.Rule.providers.actors | String | All workloads. |
| Illumio.Rule.providers.label_group.href | String | Providers label group URI. |
| Illumio.Rule.providers.virtual_server.href | String | Providers virtual server URI. |
| Illumio.Rule.providers.virtual_service.href | String | Provider virtual service URI. |
| Illumio.Rule.providers.ip_list.href | String | Provider ip list URI. |
| Illumio.Rule.providers.workload.href | String | Provider workload URI. |
| Illumio.Rule.consumers.label.href | String | Consumer label URI. |
| Illumio.Rule.consumers.label_group.href | String | Consumer label group URI. |
| Illumio.Rule.consumers.actors | String | All workloads. |
| Illumio.Rule.consumers.virtual_service.href | String | Consumer virtual service URI. |
| Illumio.Rule.consumers.ip_list.href | String | Consumer ip list URI. |
| Illumio.Rule.consumers.workload.href | String | Consumer workload URI. |
| Illumio.Rule.consumers.virtual_server.href | String | Consumer virtual server URI. |
| Illumio.Rule.consuming_security_principals | String | URI of consuming security principals. |
| Illumio.Rule.sec_connect | Boolean | Whether a secure connection is established or not. |
| Illumio.Rule.stateless | Boolean | Whether packet filtering is stateless for the rule or not. |
| Illumio.Rule.machine_auth | Boolean | Whether machine authentication is enabled or not. |
| Illumio.Rule.unscoped_consumers | Boolean | Whether the scope for rule consumers is set to all or not. |
| Illumio.Rule.network_type | String | Network types to which this rule should apply to. |
| Illumio.Rule.ingress_services.href | String | Array of service URI and port/protocol combinations. |
| Illumio.Rule.resolve_labels_as.providers | String | Providers resolve labels. |
| Illumio.Rule.resolve_labels_as.consumers | String | Consumers resolve labels. |
Command example
!illumio-rule-create ruleset_href=/orgs/1/sec_policy/draft/rule_sets/2687 consumers=ams providers=ams ingress_services=/orgs/1/sec_policy/draft/services/1751
Context Example
{
"Illumio": {
"Rule": {
"consumers": [
{
"actors": "ams"
}
],
"created_at": "2022-10-03T12:19:36.679Z",
"created_by": {
"href": "/users/68"
},
"enabled": true,
"href": "/orgs/1/sec_policy/draft/rule_sets/2687/sec_rules/dummy",
"ingress_services": [
{
"href": "/orgs/1/sec_policy/draft/services/dummy"
}
],
"machine_auth": false,
"network_type": "brn",
"providers": [
{
"actors": "ams"
}
],
"resolve_labels_as": {
"consumers": [
"workloads"
],
"providers": [
"workloads"
]
},
"sec_connect": false,
"stateless": false,
"unscoped_consumers": false,
"update_type": "create",
"updated_at": "2022-10-03T12:19:36.691Z",
"updated_by": {
"href": "/users/68"
}
}
}
}
Human Readable Output
Rule /orgs/1/sec_policy/draft/rule_sets/2687/sec_rules/2691 has been created successfully
Rule HREF Created At Updated At Enabled Network Type Ingress Services Providers Consumers Resolve Providers As Resolve Consumers As /orgs/1/sec_policy/draft/rule_sets/2687/sec_rules/dummy 03 Oct 2022, 12:19 PM 03 Oct 2022, 12:19 PM true brn /orgs/1/sec_policy/draft/services/1751 ams ams workloads workloads
Configuration parameters
url— Server URL (required)port— Port (required)api_user— API Key Username (required)api_key— API Secret (required)org_id— Organization ID (required)insecure— Trust any certificate (not secure)proxy— Use system proxy settings
Commands (12)
-
illumio-enforcement-boundary-createCreates an enforcement boundary for a particular port/protocol. After completion of this command, provisioning will be done using the "illumio-object-provision" command.
-
illumio-enforcement-mode-updateUpdate the Enforcement Mode for one or more workloads.
-
illumio-ip-list-getRetrieves the list of IPs based on the name of the IP list.
-
illumio-ip-lists-getRetrieves the list of IPs based on the query parameters.
-
illumio-object-provisionA utility method for provisioning policy objects from draft to active state. Policy objects only affect the network once they've been provisioned.
-
illumio-rule-createCreates & assigns rules to a particular ruleset. Added or updated Rules will remain in draft state until their containing Rule Set is provisioned using the "illumio-object-provision" command.
-
illumio-ruleset-createCreates a ruleset with a unique name. Until provisioned with the 'illumio-object-provision' command, this object will remain in a draft state.
-
illumio-service-binding-createBinds the existing or a new virtual service to the workloads.
-
illumio-traffic-analysisRetrieves traffic flow of a particular port & protocol within the specified time range based on policy decisions.
-
illumio-virtual-service-createCreates a virtual service for a particular port & protocol, which can be further binded to workloads. Until provisioned with the 'illumio-object-provision' command, this object will remain in a draft state.
-
illumio-workload-getRetrieves the details of the workload based on the provided workload's HREF.
-
illumio-workloads-listRetrieves the list of workloads based on the provided filters.
category: Network Security provider: Illumio commonfields: id: IllumioCore version: -1 configuration: - additionalinfo: The URL this integration should connect to. display: Server URL name: url required: true type: 0 - additionalinfo: The port number to establish the connection. defaultvalue: '443' display: Port name: port required: true type: 0 - additionalinfo: The API user for authentication. display: API Key Username name: api_user required: true type: 4 - additionalinfo: The API Key required to authenticate to the service. display: API Secret name: api_key required: true type: 4 - additionalinfo: The organization ID to use when calling org-dependent APIs. defaultvalue: '1' display: Organization ID name: org_id required: true type: 0 - additionalinfo: Indicates whether to allow connections without verifying SSL certificate's validity. display: Trust any certificate (not secure) name: insecure type: 8 required: false - additionalinfo: Indicates whether to use XSOAR's system proxy settings to connect to the API. display: Use system proxy settings name: proxy type: 8 required: false description: Connects to Illumio Core APIs to perform investigative and restorative actions. display: Illumio Core name: IllumioCore script: commands: - arguments: - description: Port number. name: port required: true - auto: PREDEFINED defaultValue: tcp description: |- Communication protocol. Supported values are: 'tcp' and 'udp'. name: protocol predefined: - tcp - udp - defaultValue: 1 week ago description: |- Start of analysis range. Supported formats: N minutes, N hours, N days, N weeks, N months, N years, yyyy-mm-dd, yyyy-mm-ddTHH:MM:SSZ For example: 01 Mar 2021, 01 Feb 2021 04:45:33, 2022-04-17T14:05:44Z. name: start_time - defaultValue: now description: |- End of analysis range. Supported formats: N minutes, N hours, N days, N weeks, N months, N years, yyyy-mm-dd, yyyy-mm-ddTHH:MM:SSZ For example: 01 Mar 2021, 01 Feb 2021 04:45:33, 2022-04-17T14:05:44Z. name: end_time - defaultValue: potentially_blocked, unknown description: |- List of policy decisions to include in the search results. Supports comma-separated values. Supported values are: 'potentially_blocked', 'blocked', 'unknown', and 'allowed'. isArray: true name: policy_decisions description: Retrieves traffic flow of a particular port & protocol within the specified time range based on policy decisions. name: illumio-traffic-analysis outputs: - contextPath: Illumio.TrafficFlows.src.ip description: IP of the source. type: String - contextPath: Illumio.TrafficFlows.dst.ip description: Destination IP address. type: String - contextPath: Illumio.TrafficFlows.dst.workload.hostname description: Destination workload hostname. type: String - contextPath: Illumio.TrafficFlows.dst.workload.name description: Destination workload name. type: String - contextPath: Illumio.TrafficFlows.dst.workload.href description: Destination workload URI. type: String - contextPath: Illumio.TrafficFlows.dst.workload.os_type description: Destination workload OS type. type: String - contextPath: Illumio.TrafficFlows.dst.workload.labels.href description: Destination label URI. type: String - contextPath: Illumio.TrafficFlows.dst.workload.labels.key description: Destination workload label key. type: String - contextPath: Illumio.TrafficFlows.dst.workload.labels.value description: Destination workload label value. type: String - contextPath: Illumio.TrafficFlows.service.port description: Port of the traffic. type: Number - contextPath: Illumio.TrafficFlows.service.proto description: Protocol number of the traffic. type: Number - contextPath: Illumio.TrafficFlows.num_connections description: Number of traffic flows reported in connections. type: Number - contextPath: Illumio.TrafficFlows.policy_decisions description: Indicates the policy decision for the flow. Indicates if the traffic flow is allowed, potentially blocked (but allowed), or blocked. type: String - contextPath: Illumio.TrafficFlows.state description: State of the flow. type: String - contextPath: Illumio.TrafficFlows.flow_direction description: Flow direction of the traffic. type: String - contextPath: Illumio.TrafficFlows.dst_bi description: Bytes received till now by the destination over the flow during the interval. type: Number - contextPath: Illumio.TrafficFlows.dst_bo description: Bytes sent till now by the destination over the flow during the interval. type: Number - contextPath: Illumio.TrafficFlows.timestamp_range.last_detected description: Time range when traffic was last detected. type: Date - contextPath: Illumio.TrafficFlows.timestamp_range.first_detected description: Time range when traffic was first detected. type: Date - arguments: - description: Virtual service name. name: name required: true - description: Port number. name: port required: true - auto: PREDEFINED defaultValue: TCP description: Communication protocol. name: protocol predefined: - TCP - UDP description: Creates a virtual service for a particular port & protocol, which can be further binded to workloads. Until provisioned with the 'illumio-object-provision' command, this object will remain in a draft state. name: illumio-virtual-service-create outputs: - contextPath: Illumio.VirtualService.href description: Label URI. type: String - contextPath: Illumio.VirtualService.created_at description: Virtual service creation time. type: Date - contextPath: Illumio.VirtualService.updated_at description: Virtual service updated time. type: Date - contextPath: Illumio.VirtualService.deleted_at description: Virtual service deleted time. type: Date - contextPath: Illumio.VirtualService.created_by.href description: URI of the user who has created the virtual service. type: String - contextPath: Illumio.VirtualService.updated_by.href description: URI of the user who has updated the virtual service. type: String - contextPath: Illumio.VirtualService.deleted_by.href description: URI of the user who has deleted the virtual service. type: String - contextPath: Illumio.VirtualService.update_type description: What type of modification has been done on the virtual service. type: String - contextPath: Illumio.VirtualService.name description: Name of the virtual service. type: String - contextPath: Illumio.VirtualService.description description: Description of the virtual service. type: String - contextPath: Illumio.VirtualService.pce_fqdn description: PCE FQDN to assign to the virtual service. type: String - contextPath: Illumio.VirtualService.service_ports.port description: Port of the virtual service. type: Number - contextPath: Illumio.VirtualService.service_ports.proto description: Proto of the virtual service. type: Number - contextPath: Illumio.VirtualService.labels description: Labels of the virtual service. type: Unknown - contextPath: Illumio.VirtualService.ip_overrides description: Array of IPs or CIDRs as IP overrides. type: Unknown - contextPath: Illumio.VirtualService.apply_to description: 'Firewall rule target for workloads bound to this virtual service: host_only or internal_bridge_network.' type: String - contextPath: Illumio.VirtualService.caps description: Array of permissions for the entity for the current user - an empty array implies read only access. type: Unknown - contextPath: Illumio.VirtualService.service_addresses description: Service addresses of the virtual service. type: Unknown - arguments: - description: |- Workload HREFs to bind. Supports comma-separated values. Note: Users can retrieve the list of Href's by executing the "illumio-workloads-list" or the "illumio-traffic-analysis" command. isArray: true name: workloads required: true - description: Virtual service HREF to bind the workloads to. name: virtual_service required: true description: Binds the existing or a new virtual service to the workloads. name: illumio-service-binding-create outputs: - contextPath: Illumio.ServiceBinding.status description: Indicates the status of a request. type: String - contextPath: Illumio.ServiceBinding.href description: Label URI. type: String - arguments: - description: List of security policy object HREFs to provision. Supports comma-separated values. isArray: true name: security_policy_objects required: true description: A utility method for provisioning policy objects from draft to active state. Policy objects only affect the network once they've been provisioned. name: illumio-object-provision outputs: - contextPath: Illumio.PolicyState.href description: Object label URI. type: String - contextPath: Illumio.PolicyState.commit_message description: Message for the provisioning. type: String - contextPath: Illumio.PolicyState.version description: Version of the object. type: Number - contextPath: Illumio.PolicyState.workloads_affected description: Number of workloads affected. type: Number - contextPath: Illumio.PolicyState.created_by.href description: Created by label URI. type: String - contextPath: Illumio.PolicyState.object_counts.rule_sets description: Count of rulesets. type: Number - contextPath: Illumio.PolicyState.object_counts.services description: Count of services. type: Number - contextPath: Illumio.PolicyState.object_counts.ip_lists description: Count of IP lists. type: Number - contextPath: Illumio.PolicyState.object_counts.firewall_settings description: Count of firewall settings. type: Number - contextPath: Illumio.PolicyState.object_counts.label_groups description: Count of label groups. type: Number - contextPath: Illumio.PolicyState.object_counts.secure_connect_gateways description: Count of secure connection gateways. type: Number - contextPath: Illumio.PolicyState.object_counts.virtual_servers description: Count of virtual servers. type: Number - contextPath: Illumio.PolicyState.object_counts.enforcement_boudaries description: Count of enforcement boundaries. type: Number - contextPath: Illumio.PolicyState.object_counts.virtual_services description: Count of virtual services. type: Number - contextPath: Illumio.PolicyState.provisioned_hrefs description: List of active hrefs after provisioning. type: Unknown - arguments: - description: |- Workload HREF. Note: Users can retrieve the list of Href's by executing the "illumio-workloads-list" command. name: href required: true description: Retrieves the details of the workload based on the provided workload's HREF. name: illumio-workload-get outputs: - contextPath: Illumio.Workloads.href description: URI of workload. type: String - contextPath: Illumio.Workloads.deleted description: Whether this workload has been deleted or not. type: Boolean - contextPath: Illumio.Workloads.delete_type description: Workload deletion type. type: String - contextPath: Illumio.Workloads.name description: Interface name. type: String - contextPath: Illumio.Workloads.description description: The description of this workload. type: String - contextPath: Illumio.Workloads.managed description: True if the workload is managed, else false. type: Boolean - contextPath: Illumio.Workloads.hostname description: The hostname of this workload. type: String - contextPath: Illumio.Workloads.service_principal_name description: The Kerberos Service Principal Name (SPN). type: String - contextPath: Illumio.Workloads.agent_to_pce_certificate_authentication_id description: PKI Certificate identifier to be used by the PCE for authenticating the VEN. type: String - contextPath: Illumio.Workloads.distinguished_name description: X.509 Subject distinguished name. type: String - contextPath: Illumio.Workloads.public_ip description: The public IP address of the server. type: String - contextPath: Illumio.Workloads.external_data_set description: External data set identifier. type: String - contextPath: Illumio.Workloads.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.Workloads.interfaces.name description: Interface name. type: String - contextPath: Illumio.Workloads.interfaces.link_state description: Link state. type: String - contextPath: Illumio.Workloads.interfaces.address description: The IP address to assign to this interface. type: String - contextPath: Illumio.Workloads.interfaces.cidr_block description: The number of bits in the subnet /24 is 255.255.255.0. type: Number - contextPath: Illumio.Workloads.interfaces.default_gateway_address description: The IP address of the default gateway. type: String - contextPath: Illumio.Workloads.interfaces.network.href description: URI of the network. type: String - contextPath: Illumio.Workloads.interfaces.network_detection_mode description: Network detection mode. type: String - contextPath: Illumio.Workloads.interfaces.friendly_name description: User-friendly name for interface. type: String - contextPath: Illumio.Workloads.service_provider description: Service provider. type: String - contextPath: Illumio.Workloads.data_center description: Data center. type: String - contextPath: Illumio.Workloads.data_center_zone description: Data center zone. type: String - contextPath: Illumio.Workloads.os_id description: Our OS identifier. type: String - contextPath: Illumio.Workloads.os_detail description: Additional OS details - just displayed to the end user. type: String - contextPath: Illumio.Workloads.online description: If this workload is online. type: Boolean - contextPath: Illumio.Workloads.firewall_coexistence.illumio_primary description: Illumio is the primary firewall if set to true. type: Boolean - contextPath: Illumio.Workloads.containers_inherit_host_policy description: This workload will apply the policy it receives both to itself and the containers hosted by it. type: Boolean - contextPath: Illumio.Workloads.blocked_connection_action description: Firewall action for blocked connections. type: String - contextPath: Illumio.Workloads.labels.href description: URI of this label. type: String - contextPath: Illumio.Workloads.labels.deleted description: Assigned labels. type: Boolean - contextPath: Illumio.Workloads.labels.key description: Key in key-value pair. type: String - contextPath: Illumio.Workloads.labels.value description: Value in key-value pair. type: String - contextPath: Illumio.Workloads.labels.external_data_set description: External data set identifier. type: String - contextPath: Illumio.Workloads.labels.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.Workloads.labels.created_at description: Timestamp when this label was first created. type: Date - contextPath: Illumio.Workloads.labels.updated_at description: Timestamp when this label was last updated. type: Date - contextPath: Illumio.Workloads.labels.created_by.href description: User who has originally created this label. type: String - contextPath: Illumio.Workloads.labels.updated_by.href description: User who has last updated this label. type: String - contextPath: Illumio.Workloads.services.uptime_seconds description: How long since the last reboot of this box - used as a timestamp for this. type: Number - contextPath: Illumio.Workloads.services.created_at description: Timestamp when this service was first created. type: Date - contextPath: Illumio.Workloads.services.open_service_ports.protocol description: Transport protocol. type: Number - contextPath: Illumio.Workloads.services.open_service_ports.address description: The local address this service is bound to. type: String - contextPath: Illumio.Workloads.services.open_service_ports.port description: The local port this service is bound to. type: Number - contextPath: Illumio.Workloads.services.open_service_ports.process_name description: The process name (including the full path). type: String - contextPath: Illumio.Workloads.services.open_service_ports.user description: The user account that the process is running under. type: String - contextPath: Illumio.Workloads.services.open_service_ports.package description: The RPM/DEB package that the program is part of. type: String - contextPath: Illumio.Workloads.services.open_service_ports.win_service_name description: Name of the windows service. type: String - contextPath: Illumio.Workloads.vulnerabilities_summary.num_vulnerabilities description: Number of vulnerabilities associated with the workload. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_exposure description: The aggregated vulnerability port exposure score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.any description: The boolean value represents if at least one port is exposed to the internet (any rule) on the workload. type: Boolean - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.ip_list description: The boolean value represents if at least one port is exposed to ip_list(s) on the workload. type: Boolean - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerability_exposure_score description: The aggregated vulnerability exposure score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerability_score description: The aggregated vulnerability score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.max_vulnerability_score description: The maximum of all the vulnerability scores associated with the detected_vulnerabilities on the workload. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.ip_address description: The IP address of the host where the vulnerability is found. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.port description: The port which is associated with the vulnerability. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.proto description: The protocol which is associated with the vulnerability. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.port_exposure description: The exposure of the port based on the current policy. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.any description: The boolean value represents if the port is exposed to the internet (any rule). type: Boolean - contextPath: Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.ip_list description: The boolean value represents if the port is exposed to ip_list(s). type: Boolean - contextPath: Illumio.Workloads.detected_vulnerabilities.workload.href description: The URI of the workload to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.href description: The URI of the vulnerability class to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.score description: The normalized score of the vulnerability within the range of 0 to 100. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.name description: The title/name of the vulnerability. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability_report.href description: The URI of the report to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.agent.config.mode description: DEPRECATED AND REPLACED (Use workload enforcement_mode instead). type: String - contextPath: Illumio.Workloads.agent.config.log_traffic description: True if we want to log traffic events from this workload. type: Boolean - contextPath: Illumio.Workloads.agent.config.security_policy_update_mode description: Defines the current policy update mode, which can be either adaptive or static based on static policy scopes. type: String - contextPath: Illumio.Workloads.agent.href description: HREF of the service agent. type: String - contextPath: Illumio.Workloads.agent.secure_connect.matching_issuer_name description: Issuer name match criteria for certificate used during establishing secure connections. type: String - contextPath: Illumio.Workloads.agent.status.uid description: The unique ID reported by the server. type: String - contextPath: Illumio.Workloads.agent.status.last_heartbeat_on description: The last time (rfc3339 timestamp) a heartbeat was received from this workload. type: Date - contextPath: Illumio.Workloads.agent.status.uptime_seconds description: How long since the last reboot of this server. Recorded in DB at the time of the last heartbeat. type: Number - contextPath: Illumio.Workloads.agent.status.agent_version description: Agent software version string. type: String - contextPath: Illumio.Workloads.agent.status.managed_since description: The time (rfc3339 timestamp) at which this workload became managed by a VEN. type: Date - contextPath: Illumio.Workloads.agent.status.fw_config_current description: If this workload's firewall config is up to string'. type: Boolean - contextPath: Illumio.Workloads.agent.status.firewall_rule_count description: 'DEPRECATED WITH NO REPLACEMENT: Number of firewall rules currently installed.' type: Number - contextPath: Illumio.Workloads.agent.status.security_policy_refresh_at description: DEPRECATED AND REPLACED (USE security_policy_applied_at and security_policy_received_at INSTEAD). type: Date - contextPath: Illumio.Workloads.agent.status.security_policy_applied_at description: Last reported time when policy was applied (UTC). type: Date - contextPath: Illumio.Workloads.agent.status.security_policy_received_at description: Last reported time when policy was received (UTC). type: Date - contextPath: Illumio.Workloads.agent.status.agent_health_errors.errors description: Errors associated with the security policy. type: Unknown - contextPath: Illumio.Workloads.agent.status.agent_health_errors.warnings description: Warnings associated with the security policy. type: Unknown - contextPath: Illumio.Workloads.agent.status.agent_health.type description: This field describes the error or the warning type. type: String - contextPath: Illumio.Workloads.agent.status.agent_health.severity description: Severity of the error type. type: String - contextPath: Illumio.Workloads.agent.status.agent_health.audit_event description: The URI of the audit event that was generated for the corresponding error or warning. type: String - contextPath: Illumio.Workloads.agent.status.security_policy_sync_state description: Current state of security policy. type: String - contextPath: Illumio.Workloads.agent.active_pce_fqdn description: The FQDN of the PCE that received the agent's last heartbeat. type: String - contextPath: Illumio.Workloads.agent.target_pce_fqdn description: The FQDN of the PCE the agent will use for future connections. type: String - contextPath: Illumio.Workloads.agent.type description: Agent type. type: String - contextPath: Illumio.Workloads.ven.href description: The URI of the VEN that manages this workload. This replaces the 'agent' field of this object. type: String - contextPath: Illumio.Workloads.ven.hostname description: The hostname of the host managed by the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.ven.name description: The friendly name of the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.ven.status description: Status of the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.enforcement_mode description: Workload's enforcement mode. type: String - contextPath: Illumio.Workloads.selectively_enforced_services.href description: Workload's selective enforcement mode. type: String - contextPath: Illumio.Workloads.created_at description: The time (rfc3339 timestamp) at which this workload was created. type: Date - contextPath: Illumio.Workloads.updated_at description: The time (rfc3339 timestamp) at which this workload was last updated. type: Date - contextPath: Illumio.Workloads.deleted_at description: The time (rfc3339 timestamp) at which this workload was deleted. type: Date - contextPath: Illumio.Workloads.created_by.href description: The URI of the user who has created this workload. type: String - contextPath: Illumio.Workloads.updated_by.href description: The URI of the user who has last updated this workload. type: String - contextPath: Illumio.Workloads.deleted_by.href description: The URI of the user who has deleted this workload. type: String - contextPath: Illumio.Workloads.container_cluster.href description: Container cluster URI. type: String - contextPath: Illumio.Workloads.container_cluster.name description: Container cluster name. type: String - contextPath: Illumio.Workloads.ike_authentication_certificate description: IKE authentication certificate for certificate-based Secure Connect and Machine Auth connections. type: String - arguments: - defaultValue: '500' description: |- Maximum number of workloads to return in the result set. The value must be positive integer. High value will result in performance issue. Note: 2500 is the optimum value. name: max_results - description: Workload name. name: name - description: Workload hostname. name: hostname - description: Workload IP address. Supports partial matches. name: ip_address - auto: PREDEFINED description: True to return online workloads, false to return offline workloads. Leave empty to return both. name: online predefined: - 'true' - 'false' - auto: PREDEFINED description: True to return managed workloads, false to return unmanaged workloads. Leave empty to return both. name: managed predefined: - 'true' - 'false' - description: Workload labels. isArray: true name: labels - auto: PREDEFINED description: Workload enforcement mode. name: enforcement_mode predefined: - visibility_only - full - idle - selective - auto: PREDEFINED description: Workload visibility level. name: visibility_level predefined: - flow_full_detail - flow_summary - flow_drops - flow_off - enhanced_data_collection description: Retrieves the list of workloads based on the provided filters. name: illumio-workloads-list outputs: - contextPath: Illumio.Workloads.href description: URI of workload. type: String - contextPath: Illumio.Workloads.deleted description: Whether this workload has been deleted or not. type: Boolean - contextPath: Illumio.Workloads.delete_type description: Workload deletion type. type: String - contextPath: Illumio.Workloads.name description: Interface name. type: String - contextPath: Illumio.Workloads.description description: The description of this workload. type: String - contextPath: Illumio.Workloads.managed description: True if the workload is managed, else false. type: Boolean - contextPath: Illumio.Workloads.hostname description: The hostname of this workload. type: String - contextPath: Illumio.Workloads.service_principal_name description: The Kerberos Service Principal Name (SPN). type: String - contextPath: Illumio.Workloads.agent_to_pce_certificate_authentication_id description: PKI Certificate identifier to be used by the PCE for authenticating the VEN. type: String - contextPath: Illumio.Workloads.distinguished_name description: X.509 Subject distinguished name. type: String - contextPath: Illumio.Workloads.public_ip description: The public IP address of the server. type: String - contextPath: Illumio.Workloads.external_data_set description: External data set identifier. type: String - contextPath: Illumio.Workloads.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.Workloads.interfaces.name description: Interface name. type: String - contextPath: Illumio.Workloads.interfaces.link_state description: Link state. type: String - contextPath: Illumio.Workloads.interfaces.address description: The IP address to assign to this interface. type: String - contextPath: Illumio.Workloads.interfaces.cidr_block description: The number of bits in the subnet /24 is 255.255.255.0. type: Number - contextPath: Illumio.Workloads.interfaces.default_gateway_address description: The IP address of the default gateway. type: String - contextPath: Illumio.Workloads.interfaces.network.href description: URI of the network. type: String - contextPath: Illumio.Workloads.interfaces.network_detection_mode description: Network detection mode. type: String - contextPath: Illumio.Workloads.interfaces.friendly_name description: User-friendly name for interface. type: String - contextPath: Illumio.Workloads.service_provider description: Service provider. type: String - contextPath: Illumio.Workloads.data_center description: Data center. type: String - contextPath: Illumio.Workloads.data_center_zone description: Data center zone. type: String - contextPath: Illumio.Workloads.os_id description: Our OS identifier. type: String - contextPath: Illumio.Workloads.os_detail description: Additional OS details - just displayed to the end user. type: String - contextPath: Illumio.Workloads.online description: If this workload is online. type: Boolean - contextPath: Illumio.Workloads.firewall_coexistence.illumio_primary description: Illumio is the primary firewall if set to true. type: Boolean - contextPath: Illumio.Workloads.containers_inherit_host_policy description: This workload will apply the policy it receives both to itself and the containers hosted by it. type: Boolean - contextPath: Illumio.Workloads.blocked_connection_action description: Firewall action for blocked connections. type: String - contextPath: Illumio.Workloads.labels.href description: URI of this label. type: String - contextPath: Illumio.Workloads.labels.deleted description: Assigned labels. type: Boolean - contextPath: Illumio.Workloads.labels.key description: Key in key-value pair. type: String - contextPath: Illumio.Workloads.labels.value description: Value in key-value pair. type: String - contextPath: Illumio.Workloads.labels.external_data_set description: External data set identifier. type: String - contextPath: Illumio.Workloads.labels.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.Workloads.labels.created_at description: Timestamp when this label was first created. type: Date - contextPath: Illumio.Workloads.labels.updated_at description: Timestamp when this label was last updated. type: Date - contextPath: Illumio.Workloads.labels.created_by.href description: User who has originally created this label. type: String - contextPath: Illumio.Workloads.labels.updated_by.href description: User who has last updated this label. type: String - contextPath: Illumio.Workloads.services.uptime_seconds description: How long since the last reboot of this box - used as a timestamp for this. type: Number - contextPath: Illumio.Workloads.services.created_at description: Timestamp when this service was first created. type: Date - contextPath: Illumio.Workloads.services.open_service_ports.protocol description: Transport protocol. type: Number - contextPath: Illumio.Workloads.services.open_service_ports.address description: The local address this service is bound to. type: String - contextPath: Illumio.Workloads.services.open_service_ports.port description: The local port this service is bound to. type: Number - contextPath: Illumio.Workloads.services.open_service_ports.process_name description: The process name (including the full path). type: String - contextPath: Illumio.Workloads.services.open_service_ports.user description: The user account that the process is running under. type: String - contextPath: Illumio.Workloads.services.open_service_ports.package description: The RPM/DEB package that the program is part of. type: String - contextPath: Illumio.Workloads.services.open_service_ports.win_service_name description: Name of the windows service. type: String - contextPath: Illumio.Workloads.vulnerabilities_summary.num_vulnerabilities description: Number of vulnerabilities associated with the workload. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_exposure description: The aggregated vulnerability port exposure score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.any description: The boolean value represents if at least one port is exposed to the internet (any rule) on the workload. type: Boolean - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerable_port_wide_exposure.ip_list description: The boolean value represents if at least one port is exposed to ip_list(s) on the workload. type: Boolean - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerability_exposure_score description: The aggregated vulnerability exposure score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.vulnerability_score description: The aggregated vulnerability score of the workload across all the vulnerable ports. type: Number - contextPath: Illumio.Workloads.vulnerabilities_summary.max_vulnerability_score description: The maximum of all the vulnerability scores associated with the detected_vulnerabilities on the workload. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.ip_address description: The IP address of the host where the vulnerability is found. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.port description: The port which is associated with the vulnerability. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.proto description: The protocol which is associated with the vulnerability. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.port_exposure description: The exposure of the port based on the current policy. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.any description: The boolean value represents if the port is exposed to the internet (any rule). type: Boolean - contextPath: Illumio.Workloads.detected_vulnerabilities.port_wide_exposure.ip_list description: The boolean value represents if the port is exposed to ip_list(s). type: Boolean - contextPath: Illumio.Workloads.detected_vulnerabilities.workload.href description: The URI of the workload to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.href description: The URI of the vulnerability class to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.score description: The normalized score of the vulnerability within the range of 0 to 100. type: Number - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability.name description: The title/name of the vulnerability. type: String - contextPath: Illumio.Workloads.detected_vulnerabilities.vulnerability_report.href description: The URI of the report to which this vulnerability belongs to. type: String - contextPath: Illumio.Workloads.agent.config.mode description: DEPRECATED AND REPLACED (Use workload enforcement_mode instead). type: String - contextPath: Illumio.Workloads.agent.config.log_traffic description: True if we want to log traffic events from this workload. type: Boolean - contextPath: Illumio.Workloads.agent.config.security_policy_update_mode description: Defines the current policy update mode, which can be either adaptive or static based on static policy scopes. type: String - contextPath: Illumio.Workloads.agent.href description: HREF of the service agent. type: String - contextPath: Illumio.Workloads.agent.secure_connect.matching_issuer_name description: Issuer name match criteria for certificate used during establishing secure connections. type: String - contextPath: Illumio.Workloads.agent.status.uid description: The unique ID reported by the server. type: String - contextPath: Illumio.Workloads.agent.status.last_heartbeat_on description: The last time (rfc3339 timestamp) a heartbeat was received from this workload. type: Date - contextPath: Illumio.Workloads.agent.status.uptime_seconds description: How long since the last reboot of this server. Recorded in DB at the time of the last heartbeat. type: Number - contextPath: Illumio.Workloads.agent.status.agent_version description: Agent software version string. type: String - contextPath: Illumio.Workloads.agent.status.managed_since description: The time (rfc3339 timestamp) at which this workload became managed by a VEN. type: Date - contextPath: Illumio.Workloads.agent.status.fw_config_current description: If this workload's firewall config is up to string'. type: Boolean - contextPath: Illumio.Workloads.agent.status.firewall_rule_count description: 'DEPRECATED WITH NO REPLACEMENT: Number of firewall rules currently installed.' type: Number - contextPath: Illumio.Workloads.agent.status.security_policy_refresh_at description: DEPRECATED AND REPLACED (USE security_policy_applied_at and security_policy_received_at INSTEAD). type: Date - contextPath: Illumio.Workloads.agent.status.security_policy_applied_at description: Last reported time when policy was applied (UTC). type: Date - contextPath: Illumio.Workloads.agent.status.security_policy_received_at description: Last reported time when policy was received (UTC). type: Date - contextPath: Illumio.Workloads.agent.status.agent_health_errors.errors description: Errors associated with the security policy. type: Unknown - contextPath: Illumio.Workloads.agent.status.agent_health_errors.warnings description: Warnings associated with the security policy. type: Unknown - contextPath: Illumio.Workloads.agent.status.agent_health.type description: This field describes the error or the warning type. type: String - contextPath: Illumio.Workloads.agent.status.agent_health.severity description: Severity of the error type. type: String - contextPath: Illumio.Workloads.agent.status.agent_health.audit_event description: The URI of the audit event that was generated for the corresponding error or warning. type: String - contextPath: Illumio.Workloads.agent.status.security_policy_sync_state description: Current state of security policy. type: String - contextPath: Illumio.Workloads.agent.active_pce_fqdn description: The FQDN of the PCE that received the agent's last heartbeat. type: String - contextPath: Illumio.Workloads.agent.target_pce_fqdn description: The FQDN of the PCE the agent will use for future connections. type: String - contextPath: Illumio.Workloads.agent.type description: Agent type. type: String - contextPath: Illumio.Workloads.ven.href description: The URI of the VEN that manages this workload. This replaces the 'agent' field of this object. type: String - contextPath: Illumio.Workloads.ven.hostname description: The hostname of the host managed by the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.ven.name description: The friendly name of the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.ven.status description: Status of the VEN, only displayed in expanded representations. type: String - contextPath: Illumio.Workloads.enforcement_mode description: Workload's enforcement mode. type: String - contextPath: Illumio.Workloads.selectively_enforced_services.href description: Workload's selective enforcement mode. type: String - contextPath: Illumio.Workloads.created_at description: The time (rfc3339 timestamp) at which this workload was created. type: Date - contextPath: Illumio.Workloads.updated_at description: The time (rfc3339 timestamp) at which this workload was last updated. type: Date - contextPath: Illumio.Workloads.deleted_at description: The time (rfc3339 timestamp) at which this workload was deleted. type: Date - contextPath: Illumio.Workloads.created_by.href description: The URI of the user who has created this workload. type: String - contextPath: Illumio.Workloads.updated_by.href description: The URI of the user who has last updated this workload. type: String - contextPath: Illumio.Workloads.deleted_by.href description: The URI of the user who has deleted this workload. type: String - contextPath: Illumio.Workloads.container_cluster.href description: Container cluster URI. type: String - contextPath: Illumio.Workloads.container_cluster.name description: Container cluster name. type: String - contextPath: Illumio.Workloads.ike_authentication_certificate description: IKE authentication certificate for certificate-based Secure Connect and Machine Auth connections. type: String - arguments: - description: Enforcement boundary name. name: name required: true - description: Port number. name: port required: true - auto: PREDEFINED defaultValue: TCP description: Communication protocol. name: protocol predefined: - TCP - UDP - description: List of HREFs of entities to be used as providers for the rule, or "ams" for all workloads. Supports comma separated values. isArray: true name: providers required: true - description: List of HREFs of entities to be used as consumers for the rule, or "ams" for all workloads. Supports comma separated values. isArray: true name: consumers required: true description: Creates an enforcement boundary for a particular port/protocol. After completion of this command, provisioning will be done using the "illumio-object-provision" command. name: illumio-enforcement-boundary-create outputs: - contextPath: Illumio.EnforcementBoundary.href description: Enforcement boundary label URI. type: String - contextPath: Illumio.EnforcementBoundary.created_at description: Enforcement boundary creation time. type: Date - contextPath: Illumio.EnforcementBoundary.updated_at description: Enforcement boundary updated time. type: Date - contextPath: Illumio.EnforcementBoundary.deleted_at description: Enforcement boundary deleted time. type: Date - contextPath: Illumio.EnforcementBoundary.created_by.href description: URI of the user who has created the enforcement boundary. type: String - contextPath: Illumio.EnforcementBoundary.updated_by.href description: URI of the user who has updated the enforcement boundary. type: String - contextPath: Illumio.EnforcementBoundary.deleted_by.href description: URI of the user who has deleted the enforcement boundary. type: String - contextPath: Illumio.EnforcementBoundary.update_type description: Type of the modification done on the enforcement boundary. type: String - contextPath: Illumio.EnforcementBoundary.name description: Name of the enforcement boundary. type: String - contextPath: Illumio.EnforcementBoundary.providers.actors description: All managed workloads ('ams'). type: String - contextPath: Illumio.EnforcementBoundary.providers.label.href description: URI of the provider label. type: String - contextPath: Illumio.EnforcementBoundary.providers.label_group.href description: URI of the provider label group. type: String - contextPath: Illumio.EnforcementBoundary.providers.ip_list.href description: Providers IP list label URI. type: String - contextPath: Illumio.EnforcementBoundary.consumers.actors description: All managed workloads ('ams'). type: String - contextPath: Illumio.EnforcementBoundary.consumers.label.href description: URI of the consumer label. type: String - contextPath: Illumio.EnforcementBoundary.consumers.label_group.href description: URI of the consumer label group. type: String - contextPath: Illumio.EnforcementBoundary.consumers.ip_list.href description: Consumers IP list label URI. type: String - contextPath: Illumio.EnforcementBoundary.ingress_service.port description: Port of the ingress services. type: Number - contextPath: Illumio.EnforcementBoundary.ingress_services.proto description: Protocol of the ingress services. type: Number - contextPath: Illumio.EnforcementBoundary.ingress_services.href description: URI of the ingress service. type: String - contextPath: Illumio.EnforcementBoundary.caps description: Array of permissions for the entity to the current user - an empty array implies read only access. type: Unknown - arguments: - auto: PREDEFINED description: New enforcement mode to apply. name: enforcement_mode predefined: - Idle - Visibility_only - Selective - Full required: true - description: "List of workload HREFs to update. Supports comma separated values. \nNote: Users can retrieve the list of Href's by executing the \"illumio-workloads-list\" command." isArray: true name: workloads required: true description: Update the Enforcement Mode for one or more workloads. name: illumio-enforcement-mode-update outputs: - contextPath: Illumio.UpdateStatuses.href description: Enforcement mode update workload URI. type: String - contextPath: Illumio.UpdateStatuses.status description: Whether the operation was successful or not. type: String - arguments: - description: |- URI of the IP list. Note: Users can retrieve the list of Href's of IP by executing the "illumio-ip-lists-get" command. name: href required: true description: Retrieves the list of IPs based on the name of the IP list. name: illumio-ip-list-get outputs: - contextPath: Illumio.IPLists.href description: URI of the IP list. type: String - contextPath: Illumio.IPLists.description description: Description of IP list. type: String - contextPath: Illumio.IPLists.external_data_set description: External data set identifier. type: String - contextPath: Illumio.IPLists.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.IPLists.created_at description: Time stamp when this IP list was first created. type: Date - contextPath: Illumio.IPLists.updated_at description: Time stamp when this IP List was last updated. type: Date - contextPath: Illumio.IPLists.deleted_at description: Time stamp when this IP List was deleted. type: Date - contextPath: Illumio.IPLists.created_by.href description: User who originally created this IP List. type: String - contextPath: Illumio.IPLists.updated_by.href description: User who last updated this IP List. type: String - contextPath: Illumio.IPLists.deleted_by.href description: User who has deleted this IP List. type: String - contextPath: Illumio.IPLists.name description: Name (must be unique). type: String - contextPath: Illumio.IPLists.ip_ranges.description description: Description of given IP range. type: String - contextPath: Illumio.IPLists.ip_ranges.from_ip description: IP address or a low end of IP range. Might be specified with CIDR notation. type: String - contextPath: Illumio.IPLists.ip_ranges.to_ip description: High end of an IP range. type: String - contextPath: Illumio.IPLists.ip_ranges.exclusion description: Whether this IP address is an exclusion. Exclusions must be a strict subset of inclusive IP addresses. type: String - contextPath: Illumio.IPLists.fqdns.fqdn description: Fully qualified domain name. type: String - contextPath: Illumio.IPLists.fqdns.description description: Description of FQDN. type: String - arguments: - description: Description of IP list to return. Supports partial matches. name: description - description: IP lists matching fqdn. Supports partial matches. name: fqdn - description: IP address matching IP list(s) to return. name: ip_address - defaultValue: '500' description: |- Maximum number of IP Lists to return. The value must be positive integer. High value will result in performance issue. Note: 2500 is the optimum value. name: max_results - description: Name of IP list(s) to return. Supports partial matches. name: name description: Retrieves the list of IPs based on the query parameters. name: illumio-ip-lists-get outputs: - contextPath: Illumio.IPLists.href description: URI of the IP list. type: String - contextPath: Illumio.IPLists.description description: Description of IP list. type: String - contextPath: Illumio.IPLists.external_data_set description: External data set identifier. type: String - contextPath: Illumio.IPLists.external_data_reference description: External data reference identifier. type: String - contextPath: Illumio.IPLists.created_at description: Time stamp when this IP list was first created. type: Date - contextPath: Illumio.IPLists.updated_at description: Time stamp when this IP List was last updated. type: Date - contextPath: Illumio.IPLists.deleted_at description: Time stamp when this IP List was deleted. type: Date - contextPath: Illumio.IPLists.created_by.href description: User who originally created this IP List. type: String - contextPath: Illumio.IPLists.updated_by.href description: User who last updated this IP List. type: String - contextPath: Illumio.IPLists.deleted_by.href description: User who has deleted this IP List. type: String - contextPath: Illumio.IPLists.name description: Name (must be unique). type: String - contextPath: Illumio.IPLists.ip_ranges.description description: Description of given IP range. type: String - contextPath: Illumio.IPLists.ip_ranges.from_ip description: IP address or a low end of IP range. Might be specified with CIDR notation. type: String - contextPath: Illumio.IPLists.ip_ranges.to_ip description: High end of an IP range. type: String - contextPath: Illumio.IPLists.ip_ranges.exclusion description: Whether this IP address is an exclusion. Exclusions must be a strict subset of inclusive IP addresses. type: Boolean - contextPath: Illumio.IPLists.fqdns.fqdn description: Fully qualified domain name. type: String - contextPath: Illumio.IPLists.fqdns.description description: Description of FQDN. type: String - arguments: - description: Ruleset name. name: name required: true description: Creates a ruleset with a unique name. Until provisioned with the 'illumio-object-provision' command, this object will remain in a draft state. name: illumio-ruleset-create outputs: - contextPath: Illumio.Ruleset.href description: Label URI. type: String - contextPath: Illumio.Ruleset.created_at description: Ruleset creation time. type: Date - contextPath: Illumio.Ruleset.updated_at description: Ruleset updation time. type: Date - contextPath: Illumio.Ruleset.deleted_at description: Ruleset deletion time. type: Date - contextPath: Illumio.Ruleset.created_by.href description: URI of the user who has created the ruleset. type: String - contextPath: Illumio.Ruleset.updated_by.href description: URI of the user who has updated the ruleset. type: String - contextPath: Illumio.Ruleset.deleted_by.href description: URI of the user who has deleted the ruleset. type: String - contextPath: Illumio.Ruleset.update_type description: Type of modification done on the ruleset. type: String - contextPath: Illumio.Ruleset.name description: Name of the ruleset. type: String - contextPath: Illumio.Ruleset.description description: Description of the ruleset. type: String - contextPath: Illumio.Ruleset.enabled description: Whether the ruleset is enabled or not. type: Boolean - contextPath: Illumio.Ruleset.scopes description: Scope of the ruleset. type: Unknown - contextPath: Illumio.Ruleset.rules description: Rules in the ruleset. type: Unknown - contextPath: Illumio.Ruleset.ip_tables_rules description: Array of IP table rules in the ruleset. type: Unknown - contextPath: Illumio.Ruleset.caps description: Array of permissions for the entity to the current user - an empty array implies read-only access. type: Unknown - arguments: - description: HREF of the ruleset in which to create the rule. name: ruleset_href required: true - description: HREFs of entities to be used as providers for the rule. For all workloads provide "ams". Supports comma-separated values. isArray: true name: providers required: true - description: HREFs of entities to be used as consumers for the rule. For all workloads provide "ams". Supports comma-separated values. isArray: true name: consumers required: true - defaultValue: workloads description: |- Provider objects the rule should apply to. Supports comma separated values. Supported values are: 'workloads' and 'virtual_services'. isArray: true name: resolve_providers_as - defaultValue: workloads description: |- Consumer objects the rule should apply to. Supports comma separated values. Supported values are: 'workloads' and 'virtual_services'. isArray: true name: resolve_consumers_as - description: Service URIs. Supports comma separated values. isArray: true name: ingress_services description: Creates & assigns rules to a particular ruleset. Added or updated Rules will remain in draft state until their containing Rule Set is provisioned using the "illumio-object-provision" command. name: illumio-rule-create outputs: - contextPath: Illumio.Rule.href description: Label URI. type: String - contextPath: Illumio.Rule.created_at description: Rule creation time. type: Date - contextPath: Illumio.Rule.updated_at description: Rule updated time. type: Date - contextPath: Illumio.Rule.deleted_at description: Rule deleted time. type: Date - contextPath: Illumio.Rule.created_by.href description: URI of the user who has created the rule. type: String - contextPath: Illumio.Rule.updated_by.href description: URI of the user who has updated the rule. type: String - contextPath: Illumio.Rule.deleted_by description: URI of the user who has deleted the rule. type: String - contextPath: Illumio.Rule.update_type description: Type of modification done on the rule. type: String - contextPath: Illumio.Rule.description description: Description of the rule. type: String - contextPath: Illumio.Rule.enabled description: Whether the rule is enabled or not. type: Boolean - contextPath: Illumio.Rule.providers.label.href description: Providers label URI. type: String - contextPath: Illumio.Rule.providers.actors description: All workloads. type: String - contextPath: Illumio.Rule.providers.label_group.href description: Providers label group URI. type: String - contextPath: Illumio.Rule.providers.virtual_server.href description: Providers virtual server URI. type: String - contextPath: Illumio.Rule.providers.virtual_service.href description: Provider virtual service URI. type: String - contextPath: Illumio.Rule.providers.ip_list.href description: Provider ip list URI. type: String - contextPath: Illumio.Rule.providers.workload.href description: Provider workload URI. type: String - contextPath: Illumio.Rule.consumers.label.href description: Consumer label URI. type: String - contextPath: Illumio.Rule.consumers.label_group.href description: Consumer label group URI. type: String - contextPath: Illumio.Rule.consumers.actors description: All workloads. type: String - contextPath: Illumio.Rule.consumers.virtual_service.href description: Consumer virtual service URI. type: String - contextPath: Illumio.Rule.consumers.ip_list.href description: Consumer ip list URI. type: String - contextPath: Illumio.Rule.consumers.workload.href description: Consumer workload URI. type: String - contextPath: Illumio.Rule.consumers.virtual_server.href description: Consumer virtual server URI. type: String - contextPath: Illumio.Rule.consuming_security_principals description: URI of consuming security principals. type: String - contextPath: Illumio.Rule.sec_connect description: Whether a secure connection is established or not. type: Boolean - contextPath: Illumio.Rule.stateless description: Whether packet filtering is stateless for the rule or not. type: Boolean - contextPath: Illumio.Rule.machine_auth description: Whether machine authentication is enabled or not. type: Boolean - contextPath: Illumio.Rule.unscoped_consumers description: Whether the scope for rule consumers is set to all or not. type: Boolean - contextPath: Illumio.Rule.network_type description: Network types to which this rule should apply to. type: String - contextPath: Illumio.Rule.ingress_services.href description: Array of service URI and port/protocol combinations. type: String - contextPath: Illumio.Rule.resolve_labels_as.providers description: Providers resolve labels. type: String - contextPath: Illumio.Rule.resolve_labels_as.consumers description: Consumers resolve labels. type: String dockerimage: demisto/illumio:1.0.0.10133006 runonce: false script: '-' subtype: python3 type: python tests: - No tests (auto formatted) marketplaces: - xsoar - marketplacev2 - platform fromversion: 6.2.0