Generates a new key for a pipeline invalidating the old one. The key is used for authentication when sending logs.
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | The key is shared once and is used to authenticate the logs sent to the pipeline. |
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)