Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 988 Bytes

File metadata and controls

30 lines (21 loc) · 988 Bytes

KeyRead

Generates a new key for a pipeline invalidating the old one. The key is used for authentication when sending logs.

Properties

Name Type Description Notes
key str The key is shared once and is used to authenticate the logs sent to the pipeline.

Example

from ionoscloud_logging.models.key_read import KeyRead

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

# convert the object into a dict
key_read_dict = key_read_instance.to_dict()
# create an instance of KeyRead from a dict
key_read_from_dict = KeyRead.from_dict(key_read_dict)

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