Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.98 KB

File metadata and controls

36 lines (27 loc) · 1.98 KB

MetadataWithStatus

Properties

Name Type Description Notes
created_date datetime The ISO 8601 creation timestamp. [optional] [readonly]
created_by str Unique name of the identity that created the resource. [optional] [readonly]
created_by_user_id str Unique id of the identity that created the resource. [optional] [readonly]
last_modified_date datetime The ISO 8601 modified timestamp. [optional] [readonly]
last_modified_by str Unique name of the identity that last modified the resource. [optional] [readonly]
last_modified_by_user_id str Unique id of the identity that last modified the resource. [optional] [readonly]
resource_urn str Unique name of the resource. [optional] [readonly]
state str The status of the object. The status can be: * `AVAILABLE` - resource exists and is healthy. * `PROVISIONING` - resource is being created or updated. * `DESTROYING` - delete command was issued, the resource is being deleted. * `FAILED` - resource failed, details in `failureMessage`. [readonly]

Example

from ionoscloud_logging.models.metadata_with_status import MetadataWithStatus

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

# convert the object into a dict
metadata_with_status_dict = metadata_with_status_instance.to_dict()
# create an instance of MetadataWithStatus from a dict
metadata_with_status_from_dict = MetadataWithStatus.from_dict(metadata_with_status_dict)

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