Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.74 KB

ResourceCatalog.md

File metadata and controls

47 lines (38 loc) · 1.74 KB

ResourceCatalog

Resource Catalog

Properties

Name Type Description Notes
ol_id str The id of the resource catalog.
cloud_id str Resource cloud identifier
region str Resource region
service str Resource service class
service_display_name str Service name in UI
resource_type str Resource type
resource_id str [optional]
resource_url_template str Resource url template
crn str Cloud resource identifier
title str Resource name
provider str Resource provider
status str Resource status
tags object [optional]
additional_info object Additional info of the resource.
run_id str The run id.
last_updated_at datetime The last updated at.
account_name str [optional]
tagged_resource bool [optional]

Example

from onelens_backend_client.models.resource_catalog import ResourceCatalog

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

# convert the object into a dict
resource_catalog_dict = resource_catalog_instance.to_dict()
# create an instance of ResourceCatalog from a dict
resource_catalog_form_dict = resource_catalog.from_dict(resource_catalog_dict)

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