ListFirewallInstancesResponse returns the list of firewall instance metadata.
| Name | Type | Description | Notes |
|---|---|---|---|
| fw_instances | List[FirewallInstanceInfo] | [optional] | |
| next_page_token | str | Use this page token in your next ListFirewallInstances call to access the next page of results. | [optional] |
| has_more | bool | [optional] |
from ri.apiclient.models.list_firewall_instances_response import (
ListFirewallInstancesResponse,
)
# TODO update the JSON string below
json = "{}"
# create an instance of ListFirewallInstancesResponse from a JSON string
list_firewall_instances_response_instance = ListFirewallInstancesResponse.from_json(
json
)
# print the JSON string representation of the object
print(ListFirewallInstancesResponse.to_json())
# convert the object into a dict
list_firewall_instances_response_dict = (
list_firewall_instances_response_instance.to_dict()
)
# create an instance of ListFirewallInstancesResponse from a dict
list_firewall_instances_response_from_dict = ListFirewallInstancesResponse.from_dict(
list_firewall_instances_response_dict
)