Computer Firewall Rule Assignments

List Firewall Rule IDs

get/computers/{computerID}/firewall/assignments

Lists all firewall rule IDs assigned to a computer.

Related SDK Methods:
Java

ComputerFirewallRuleAssignmentsApi.listFirewallRuleIDsOnComputer([param1, param2, ...])

Python

ComputerFirewallRuleAssignmentsApi.list_firewall_rule_ids_on_computer([param1, param2, ...])

JavaScript

ComputerFirewallRuleAssignmentsApi.listFirewallRuleIDsOnComputer([param1, param2, ...])

Request
path Parameters
computerID
required
integer <int32> \d+

The ID number of the computer.

Example: 1
query Parameters
overrides
boolean

Return only rule IDs assigned directly to the current computer.

header Parameters
api-version
required
string

The version of the api being called.

Example: YOUR VERSION
Responses
200

successful operation

403

Not authorized to view the computer.

Request samples
import com.trendmicro.deepsecurity.ApiClient;
import com.trendmicro.deepsecurity.Configuration;
import com.trendmicro.deepsecurity.auth.ApiKeyAuth;
import com.trendmicro.deepsecurity.ApiException;
import com.trendmicro.deepsecurity.api.ComputerFirewallRuleAssignmentsApi;
import com.trendmicro.deepsecurity.model.FirewallAssignments;


public class ListFirewallRuleIDsOnComputerExample {
	
	public static void main(String[] args) {
		// Setup
		ApiClient defaultClient = Configuration.getDefaultApiClient();
		defaultClient.setBasePath("YOUR HOST");

		// Authentication
		ApiKeyAuth DefaultAuthentication = (ApiKeyAuth) defaultClient.getAuthentication("DefaultAuthentication");
		DefaultAuthentication.setApiKey("YOUR API KEY");
		try {
			defaultClient.trustAllCertificates(false);
		} catch (Exception e) {
			System.err.println("An exception occurred when calling ApiClient.trustAllCertificates");
			e.printStackTrace();
		}
		
		// Initialization
		// Set Any Required Values
		ComputerFirewallRuleAssignmentsApi instance = new ComputerFirewallRuleAssignmentsApi();
		Integer computerID = 1;
		Boolean overrides = false;
		String apiVersion = "YOUR VERSION";
		try {
			// Please replace the parameter values with yours
			FirewallAssignments result = instance.listFirewallRuleIDsOnComputer(computerID, overrides, apiVersion);
			System.out.println(result);
		} catch (ApiException e) {
			System.err.println("An exception occurred when calling ComputerFirewallRuleAssignmentsApi.listFirewallRuleIDsOnComputer");
			e.printStackTrace();
		}
	}
}

Response samples
application/json
{
  • "assignedRuleIDs": [
    ]
}

Add Firewall Rule IDs

post/computers/{computerID}/firewall/assignments

Assign firewall rule IDs to a computer.

Related SDK Methods:
Java

ComputerFirewallRuleAssignmentsApi.addFirewallRuleIDsToComputer([param1, param2, ...])

Python

ComputerFirewallRuleAssignmentsApi.add_firewall_rule_ids_to_computer([param1, param2, ...])

JavaScript

ComputerFirewallRuleAssignmentsApi.addFirewallRuleIDsToComputer([param1, param2, ...])

Request
path Parameters
computerID
required
integer <int32> \d+

The ID number of the computer.

Example: 1
query Parameters
overrides
boolean

Return only rule IDs assigned directly to the current computer.

header Parameters
api-version
required
string

The version of the api being called.

Example: YOUR VERSION
Request Body schema: application/json

The ID numbers of the firewall rules to add.

ruleIDs
Array of integers <int32>
Responses
200

successful operation

403

Not authorized to modify the computer or the requested modification is not permitted.

404

The computer does not exist.

Request samples
application/json
{
  • "ruleIDs": [
    ]
}
Response samples
application/json
{
  • "assignedRuleIDs": [
    ]
}

Set Firewall Rule IDs

put/computers/{computerID}/firewall/assignments

Set firewall rule IDs assigned to a computer.

Related SDK Methods:
Java

ComputerFirewallRuleAssignmentsApi.setFirewallRuleIDsOnComputer([param1, param2, ...])

Python

ComputerFirewallRuleAssignmentsApi.set_firewall_rule_ids_on_computer([param1, param2, ...])

JavaScript

ComputerFirewallRuleAssignmentsApi.setFirewallRuleIDsOnComputer([param1, param2, ...])

Request
path Parameters
computerID
required
integer <int32> \d+

The ID number of the computer.

Example: 1
query Parameters
overrides
boolean

Return only rule IDs assigned directly to the current computer.

header Parameters
api-version
required
string

The version of the api being called.

Example: YOUR VERSION
Request Body schema: application/json

The ID numbers of the firewall rules to set.

ruleIDs
Array of integers <int32>
Responses
200

successful operation

403

Not authorized to modify the computer or the requested modification is not permitted.

404

The computer does not exist.

Request samples
application/json
{
  • "ruleIDs": [
    ]
}
Response samples
application/json
{
  • "assignedRuleIDs": [
    ]
}

Remove a Firewall Rule ID

delete/computers/{computerID}/firewall/assignments/{firewallRuleID}

Unassign a firewall rule ID from a computer.

Related SDK Methods:
Java

ComputerFirewallRuleAssignmentsApi.removeFirewallRuleIDFromComputer([param1, param2, ...])

Python

ComputerFirewallRuleAssignmentsApi.remove_firewall_rule_id_from_computer([param1, param2, ...])

JavaScript

ComputerFirewallRuleAssignmentsApi.removeFirewallRuleIDFromComputer([param1, param2, ...])

Request
path Parameters
computerID
required
integer <int32> \d+

The ID number of the computer.

Example: 1
firewallRuleID
required
integer <int32> \d+

The ID number of the firewall rule to delete.

Example: 1
query Parameters
overrides
boolean

Return only rule IDs assigned directly to the current computer.

header Parameters
api-version
required
string

The version of the api being called.

Example: YOUR VERSION
Responses
200

successful operation

403

Not authorized to modify the computer or the requested modification is not permitted.

404

The computer does not exist.

Request samples
import com.trendmicro.deepsecurity.ApiClient;
import com.trendmicro.deepsecurity.Configuration;
import com.trendmicro.deepsecurity.auth.ApiKeyAuth;
import com.trendmicro.deepsecurity.ApiException;
import com.trendmicro.deepsecurity.api.ComputerFirewallRuleAssignmentsApi;
import com.trendmicro.deepsecurity.model.FirewallAssignments;


public class RemoveFirewallRuleIDFromComputerExample {
	
	public static void main(String[] args) {
		// Setup
		ApiClient defaultClient = Configuration.getDefaultApiClient();
		defaultClient.setBasePath("YOUR HOST");

		// Authentication
		ApiKeyAuth DefaultAuthentication = (ApiKeyAuth) defaultClient.getAuthentication("DefaultAuthentication");
		DefaultAuthentication.setApiKey("YOUR API KEY");
		try {
			defaultClient.trustAllCertificates(false);
		} catch (Exception e) {
			System.err.println("An exception occurred when calling ApiClient.trustAllCertificates");
			e.printStackTrace();
		}
		
		// Initialization
		// Set Any Required Values
		ComputerFirewallRuleAssignmentsApi instance = new ComputerFirewallRuleAssignmentsApi();
		Integer computerID = 1;
		Integer firewallRuleID = 1;
		Boolean overrides = false;
		String apiVersion = "YOUR VERSION";
		try {
			// Please replace the parameter values with yours
			FirewallAssignments result = instance.removeFirewallRuleIDFromComputer(computerID, firewallRuleID, overrides, apiVersion);
			System.out.println(result);
		} catch (ApiException e) {
			System.err.println("An exception occurred when calling ComputerFirewallRuleAssignmentsApi.removeFirewallRuleIDFromComputer");
			e.printStackTrace();
		}
	}
}

Response samples
application/json
{
  • "assignedRuleIDs": [
    ]
}