Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

SecurityGroupRule.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

SecurityGroupRule

Properties

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

Example

from hyperstack.models.security_group_rule import SecurityGroupRule

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

# convert the object into a dict
security_group_rule_dict = security_group_rule_instance.to_dict()
# create an instance of SecurityGroupRule from a dict
security_group_rule_form_dict = security_group_rule.from_dict(security_group_rule_dict)

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