Skip to main content

Security Rule Configuration Object

Manages security rules that control traffic flow between zones, applications, and users in Palo Alto Networks Strata Cloud Manager.

Class Overview

The SecurityRule class inherits from BaseObject and provides CRUD operations plus rule positioning for security rules that define core security policies for network traffic.

Methods

MethodDescriptionParametersReturn Type
create()Creates a new security ruledata: Dict[str, Any], rulebase: strSecurityRuleResponseModel
get()Retrieves a rule by IDobject_id: str, rulebase: strSecurityRuleResponseModel
update()Updates an existing rulerule: SecurityRuleUpdateModelSecurityRuleResponseModel
delete()Deletes a ruleobject_id: str, rulebase: strNone
list()Lists rules with filteringfolder: str, rulebase: strList[SecurityRuleResponseModel]
fetch()Gets rule by name and containername: str, folder: strSecurityRuleResponseModel
move()Moves rule within rulebaserule_id: UUID, data: Dict[str, Any]None

Model Attributes

AttributeTypeRequiredDefaultDescription
namestrYesNoneName of rule. Pattern: ^[a-zA-Z0-9_ \.-]+$
idUUIDYes*NoneUnique identifier (*response/update only)
disabledboolNoFalseWhether the rule is disabled
descriptionstrNoNoneRule description
tagList[str]No[]Associated tags
from_List[str]No["any"]Source zones
sourceList[str]No["any"]Source addresses
negate_sourceboolNoFalseNegate source addresses
source_userList[str]No["any"]Source users/groups
source_hipList[str]No["any"]Source Host Integrity Profiles
to_List[str]No["any"]Destination zones
destinationList[str]No["any"]Destination addresses
negate_destinationboolNoFalseNegate destination addresses
destination_hipList[str]No["any"]Destination Host Integrity Profiles
applicationList[str]No["any"]Allowed applications
serviceList[str]No["any"]Allowed services
categoryList[str]No["any"]URL categories
actionSecurityRuleActionNoallowRule action (allow/deny/drop/reset-client/server/both)
profile_settingSecurityRuleProfileSettingNoNoneSecurity profile settings
log_settingstrNoNoneLog forwarding profile
schedulestrNoNoneSchedule profile
log_startboolNoNoneLog at session start
log_endboolNoNoneLog at session end
rulebaseSecurityRuleRulebaseNoNoneWhich rulebase (pre/post)
folderstrNo**NoneFolder location. Max 64 chars
snippetstrNo**NoneSnippet location. Max 64 chars
devicestrNo**NoneDevice location. Max 64 chars

* Only required for response and update models ** Exactly one container (folder, snippet, or device) must be provided for create operations

Exceptions

ExceptionHTTP CodeDescription
InvalidObjectError400Invalid rule data or format
MissingQueryParameterError400Missing required parameters
NameNotUniqueError409Rule name already exists
ObjectNotPresentError404Rule not found
ReferenceNotZeroError409Rule still referenced
AuthenticationError401Authentication failed
ServerError500Internal server error

Basic Configuration

from scm.client import Scm

client = Scm(
client_id="your_client_id",
client_secret="your_client_secret",
tsg_id="your_tsg_id"
)

rules = client.security_rule

Methods

List Security Rules

filtered_rules = client.security_rule.list(
folder='Texas',
rulebase='pre',
action=['allow'],
application=['web-browsing', 'ssl']
)

for rule in filtered_rules:
print(f"Name: {rule.name}")
print(f"Action: {rule.action}")
print(f"Applications: {rule.application}")

# Define filter parameters as a dictionary
list_params = {
"folder": "Texas",
"rulebase": "pre",
"from_": ["trust"],
"to_": ["untrust"],
"tag": ["Production"]
}
filtered_rules = client.security_rule.list(**list_params)

Filtering responses:

# Only return rules defined exactly in 'Texas'
exact_rules = client.security_rule.list(
folder='Texas',
rulebase='pre',
exact_match=True
)

# Exclude all rules from the 'All' folder
no_all_rules = client.security_rule.list(
folder='Texas',
rulebase='pre',
exclude_folders=['All']
)

# Combine exact_match with multiple exclusions
combined_filters = client.security_rule.list(
folder='Texas',
rulebase='pre',
exact_match=True,
exclude_folders=['All'],
exclude_snippets=['default'],
exclude_devices=['DeviceA']
)

Controlling pagination with max_limit:

client.security_rule.max_limit = 4000

all_rules = client.security_rule.list(folder='Texas', rulebase='pre')

Fetch a Security Rule

rule = client.security_rule.fetch(
name="allow-web",
folder="Texas",
rulebase="pre"
)
print(f"Found rule: {rule.name}")

Create a Security Rule

# Basic allow rule
allow_rule = {
"name": "allow-web",
"folder": "Texas",
"from_": ["trust"],
"to_": ["untrust"],
"source": ["internal-net"],
"destination": ["any"],
"application": ["web-browsing", "ssl"],
"service": ["application-default"],
"action": "allow",
"log_end": True
}
basic_rule = client.security_rule.create(allow_rule, rulebase="pre")

# Rule with security profiles
secure_rule = {
"name": "secure-web",
"folder": "Texas",
"from_": ["trust"],
"to_": ["untrust"],
"source": ["internal-net"],
"destination": ["any"],
"application": ["web-browsing", "ssl"],
"service": ["application-default"],
"profile_setting": {
"group": ["best-practice"]
},
"action": "allow",
"log_start": False,
"log_end": True
}
profile_rule = client.security_rule.create(secure_rule, rulebase="pre")

Update a Security Rule

existing_rule = client.security_rule.fetch(
name="allow-web",
folder="Texas",
rulebase="pre"
)

existing_rule.description = "Updated web access rule"
existing_rule.application = ["web-browsing", "ssl", "http2"]
existing_rule.profile_setting = {
"group": ["strict-security"]
}

updated_rule = client.security_rule.update(existing_rule, rulebase="pre")

Delete a Security Rule

client.security_rule.delete("123e4567-e89b-12d3-a456-426655440000", rulebase="pre")

Move a Security Rule

# Move rule to top of rulebase
client.security_rule.move(rule.id, {
"destination": "top",
"rulebase": "pre"
})

# Move rule before another rule
client.security_rule.move(rule.id, {
"destination": "before",
"rulebase": "pre",
"destination_rule": "987fcdeb-54ba-3210-9876-fedcba098765"
})

# Move rule after another rule
client.security_rule.move(rule.id, {
"destination": "after",
"rulebase": "pre",
"destination_rule": "987fcdeb-54ba-3210-9876-fedcba098765"
})

Get a Security Rule by ID

rule_by_id = client.security_rule.get(rule.id, rulebase="pre")
print(f"Retrieved rule: {rule_by_id.name}")
print(f"Applications: {rule_by_id.application}")

Use Cases

Committing Changes

result = client.commit(
folders=["Texas"],
description="Updated security rules",
sync=True,
timeout=300
)
print(f"Commit job ID: {result.job_id}")

Monitoring Jobs

job_status = client.get_job_status(result.job_id)
print(f"Job status: {job_status.data[0].status_str}")

recent_jobs = client.list_jobs(limit=10)
for job in recent_jobs.data:
print(f"Job {job.id}: {job.type_str} - {job.status_str}")

Error Handling

from scm.exceptions import (
InvalidObjectError,
MissingQueryParameterError,
NameNotUniqueError,
ObjectNotPresentError,
ReferenceNotZeroError
)

try:
rule_config = {
"name": "test-rule",
"folder": "Texas",
"from_": ["trust"],
"to_": ["untrust"],
"source": ["internal-net"],
"destination": ["any"],
"application": ["web-browsing"],
"service": ["application-default"],
"action": "allow"
}
new_rule = client.security_rule.create(rule_config, rulebase="pre")
client.security_rule.move(new_rule.id, {
"destination": "top",
"rulebase": "pre"
})
result = client.commit(
folders=["Texas"],
description="Added test rule",
sync=True
)
status = client.get_job_status(result.job_id)

except InvalidObjectError as e:
print(f"Invalid rule data: {e.message}")
except NameNotUniqueError as e:
print(f"Rule name already exists: {e.message}")
except ObjectNotPresentError as e:
print(f"Rule not found: {e.message}")
except ReferenceNotZeroError as e:
print(f"Rule still in use: {e.message}")
except MissingQueryParameterError as e:
print(f"Missing parameter: {e.message}")