AccessRuleUpdateInput¶
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| destination_dynamic_object | DestinationDynamicObjectContent | [optional] | |
| destination_network | DestinationNetworkContent | [optional] | |
| destination_port | DestinationPortContent | [optional] | |
| index | int | Access rule index position in Access Group ordered rule list. | [optional] |
| is_active_rule | bool | Is active. True by default | [optional] |
| log_settings | LogSettings | [optional] | |
| protocol | ProtocolContent | [optional] | |
| remark | str | A remark. | [optional] |
| rule_action | str | The rule's action: PERMIT or DENY. | [optional] |
| rule_time_range | AccessRuleDetailsContent | [optional] | |
| source_dynamic_object | SourceDynamicObjectContent | [optional] | |
| source_network | SourceNetworkContent | [optional] | |
| source_port | SourcePortContent | [optional] | |
| uid | str | The unique identifier, represented as a UUID, of the Access Rule. |
Example¶
from scc_firewall_manager_sdk.models.access_rule_update_input import AccessRuleUpdateInput
# TODO update the JSON string below
json = "{}"
# create an instance of AccessRuleUpdateInput from a JSON string
access_rule_update_input_instance = AccessRuleUpdateInput.from_json(json)
# print the JSON string representation of the object
print(AccessRuleUpdateInput.to_json())
# convert the object into a dict
access_rule_update_input_dict = access_rule_update_input_instance.to_dict()
# create an instance of AccessRuleUpdateInput from a dict
access_rule_update_input_form_dict = access_rule_update_input.from_dict(access_rule_update_input_dict)