| Name |
Type |
Description |
Notes |
| created_at |
datetime |
|
[optional] |
| direction |
str |
|
[optional] |
| ethertype |
str |
|
[optional] |
| id |
int |
|
[optional] |
| port_range_max |
int |
|
[optional] |
| port_range_min |
int |
|
[optional] |
| protocol |
str |
|
[optional] |
| remote_ip_prefix |
str |
|
[optional] |
| status |
str |
|
[optional] |
from hyperstack.models.security_group_rule_fields import SecurityGroupRuleFields
# TODO update the JSON string below
json = "{}"
# create an instance of SecurityGroupRuleFields from a JSON string
security_group_rule_fields_instance = SecurityGroupRuleFields.from_json(json)
# print the JSON string representation of the object
print(SecurityGroupRuleFields.to_json())
# convert the object into a dict
security_group_rule_fields_dict = security_group_rule_fields_instance.to_dict()
# create an instance of SecurityGroupRuleFields from a dict
security_group_rule_fields_from_dict = SecurityGroupRuleFields.from_dict(security_group_rule_fields_dict)
[Back to Model list] [Back to API list] [Back to README]