GlobalSearchResult

Properties

Name Type Description Notes
cd_fmc_result CdFmcResult [optional]
inventory Inventory [optional]
objects List[object] Results from the Security Cloud Control objects that match the search term. [optional]
policies List[Policy] Results from the Security Cloud Control policies that match the search term. [optional]

Example

from scc_firewall_manager_sdk.models.global_search_result import GlobalSearchResult

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

# convert the object into a dict
global_search_result_dict = global_search_result_instance.to_dict()
# create an instance of GlobalSearchResult from a dict
global_search_result_form_dict = global_search_result.from_dict(global_search_result_dict)

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