Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 996 Bytes

File metadata and controls

31 lines (22 loc) · 996 Bytes

FirewallRule

Properties

Name Type Description Notes
firewall_rule SecurityGroupRuleFields [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.firewall_rule import FirewallRule

# TODO update the JSON string below
json = "{}"
# create an instance of FirewallRule from a JSON string
firewall_rule_instance = FirewallRule.from_json(json)
# print the JSON string representation of the object
print(FirewallRule.to_json())

# convert the object into a dict
firewall_rule_dict = firewall_rule_instance.to_dict()
# create an instance of FirewallRule from a dict
firewall_rule_from_dict = FirewallRule.from_dict(firewall_rule_dict)

[Back to Model list] [Back to API list] [Back to README]