Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.92 KB

File metadata and controls

35 lines (26 loc) · 1.92 KB

ReleaseWithMetadata

Properties

Name Type Description Notes
applications List[ApplicationScopeWithMetadata] The list of application perspectives where the release can be viewed. [optional]
id str A unique id for a release. For example: `l1wgr3DsQkGLf8u18JiGsg`.
last_updated int The timestamp for when the same release is updated. The time measured is in milliseconds. For example: `1742369990000` is `Wednesday, 19 March 2025 07:39:50 GMT`. [optional]
name str The name of the release. For example: `frontend/release-2000`.
scopes List[ReleaseScope] [optional]
services List[ServiceScopeWithMetadata] The list of services where the release can be viewed. [optional]
start int The timestamp for when the release is created. The time measured is in milliseconds. For example: `1742349976000` is `Wednesday, 19 March 2025 02:06:16 GMT`. [optional]

Example

from instana_client.models.release_with_metadata import ReleaseWithMetadata

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

# convert the object into a dict
release_with_metadata_dict = release_with_metadata_instance.to_dict()
# create an instance of ReleaseWithMetadata from a dict
release_with_metadata_from_dict = ReleaseWithMetadata.from_dict(release_with_metadata_dict)

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