Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.41 KB

File metadata and controls

39 lines (31 loc) · 1.41 KB

ListFirewallInstancesResponse

ListFirewallInstancesResponse returns the list of firewall instance metadata.

Properties

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]

Example

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
)

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