Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.19 KB

File metadata and controls

34 lines (25 loc) · 1.19 KB

ResourceResult

Result of applying a single resource.

Properties

Name Type Description Notes
resource_type str Type of resource (namespace, bucket, etc.)
name str Resource name from manifest
resource_id str Created resource ID [optional]
status ResourceResultStatus Result status
error str Error message if failed [optional]

Example

from mixpeek.models.resource_result import ResourceResult

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

# convert the object into a dict
resource_result_dict = resource_result_instance.to_dict()
# create an instance of ResourceResult from a dict
resource_result_from_dict = ResourceResult.from_dict(resource_result_dict)

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