Skip to main content

ParameterStorageAttestationDocument

The attestation document. This is Base64Url encoded binary data containing the attestation document. This has a cert with a public key that needs to be used to encrypt the private fields of the parameter on creation or update.

Properties

NameTypeDescriptionNotes
attestation_documentstrThe Base64Url encoded attestation document.[optional]
}

Example

from sailpoint.v2025.models.parameter_storage_attestation_document import ParameterStorageAttestationDocument

parameter_storage_attestation_document = ParameterStorageAttestationDocument(
attestation_document='YmFzZTY0IGVuY29kZWQgYXR0ZXN0YXRpb24gZG9jdW1lbnQgZ29lcyBoZXJlLg=='
)

[Back to top]