Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ManagedClusterEncryptionConfig.md
2025-08-21 16:01:51 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-managed-cluster-encryption-config ManagedClusterEncryptionConfig ManagedClusterEncryptionConfig ManagedClusterEncryptionConfig pythonsdk
python
Python
sdk
ManagedClusterEncryptionConfig
V2024ManagedClusterEncryptionConfig
/tools/sdk/python/v2024/models/managed-cluster-encryption-config
SDK
Software Development Kit
ManagedClusterEncryptionConfig
V2024ManagedClusterEncryptionConfig

ManagedClusterEncryptionConfig

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

Properties

Name Type Description Notes
format Enum [ '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.v2024.models.managed_cluster_encryption_config import ManagedClusterEncryptionConfig

managed_cluster_encryption_config = ManagedClusterEncryptionConfig(
format='V3'
)

[Back to top]