Cloud Keys 2020 Python Edition

Questions / Feedback?

secret_data Property

The binary secret data that was retrieved or that should be sent.

Syntax

def get_secret_data() -> bytes: ...
def set_secret_data(value: bytes) -> None: ...

secret_data = property(get_secret_data, set_secret_data)

Remarks

Either this property or the secret_string property is populated with secret data after calling get_secret, depending on whether the secret data is binary or textual, so long as local_file is not set.

This property (or the secret_string property) can also be set before calling create_secret or create_version; its data will be sent if local_file is not set.

This property and secret_string are mutually exclusive; setting one will clear the other.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 Python Edition - Version 20.0 [Build 8157]