Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.39 KB

File metadata and controls

36 lines (27 loc) · 1.39 KB

FirewallDetailFields

Properties

Name Type Description Notes
attachments List[FirewallAttachmentModel] [optional]
created_at datetime [optional]
description str [optional]
environment FirewallEnvironmentFields [optional]
id int [optional]
name str [optional]
rules List[SecurityGroupRuleFields] [optional]
status str [optional]

Example

from hyperstack.models.firewall_detail_fields import FirewallDetailFields

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

# convert the object into a dict
firewall_detail_fields_dict = firewall_detail_fields_instance.to_dict()
# create an instance of FirewallDetailFields from a dict
firewall_detail_fields_from_dict = FirewallDetailFields.from_dict(firewall_detail_fields_dict)

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