Skip to main content

Managedclusterencryptionconfig

Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.

Properties

NameTypeDescriptionNotes
formatEnum [ 'V2', 'V3' ]Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.[optional]
}

Example

from sailpoint.managed_clusters.models.managedclusterencryptionconfig import Managedclusterencryptionconfig

managedclusterencryptionconfig = Managedclusterencryptionconfig(
format='V3'
)

[Back to top]