You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
grafana_endpoint
str
The endpoint of the Grafana instance.
[readonly]
Example
fromionoscloud_logging.models.metadata_for_central_loggingimportMetadataForCentralLogging# TODO update the JSON string belowjson="{}"# create an instance of MetadataForCentralLogging from a JSON stringmetadata_for_central_logging_instance=MetadataForCentralLogging.from_json(json)
# print the JSON string representation of the objectprint(MetadataForCentralLogging.to_json())
# convert the object into a dictmetadata_for_central_logging_dict=metadata_for_central_logging_instance.to_dict()
# create an instance of MetadataForCentralLogging from a dictmetadata_for_central_logging_from_dict=MetadataForCentralLogging.from_dict(metadata_for_central_logging_dict)