Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

File metadata and controls

29 lines (21 loc) · 1.03 KB

FirewallGroupResource

Properties

Name Type Description Notes
id object ID ресурса.
type ResourceType

Example

from timeweb_cloud_api.models.firewall_group_resource import FirewallGroupResource

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

# convert the object into a dict
firewall_group_resource_dict = firewall_group_resource_instance.to_dict()
# create an instance of FirewallGroupResource from a dict
firewall_group_resource_form_dict = firewall_group_resource.from_dict(firewall_group_resource_dict)

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