Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

GetResourceCatalogStatsRequest.md

File metadata and controls

32 lines (23 loc) · 1.37 KB

GetResourceCatalogStatsRequest

Get Resource Catalog Stats Request

Properties

Name Type Description Notes
filters List[OnelensDomainUtilitiesRepositoriesDynamicFiltersFilterCriteria] Filters to be applied
navira_log_id str [optional]
tenant_id str The id of the tenant.

Example

from onelens_backend_client.models.get_resource_catalog_stats_request import GetResourceCatalogStatsRequest

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

# convert the object into a dict
get_resource_catalog_stats_request_dict = get_resource_catalog_stats_request_instance.to_dict()
# create an instance of GetResourceCatalogStatsRequest from a dict
get_resource_catalog_stats_request_form_dict = get_resource_catalog_stats_request.from_dict(get_resource_catalog_stats_request_dict)

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