Skip to main content

ManagedClusterUpdatePreferences

The preference for applying updates for the cluster

Properties

NameTypeDescriptionNotes
process_groupsstrThe processGroups for updatePreferences[optional]
update_stateEnum [ 'AUTO', 'DISABLED' ]The current updateState for the cluster[optional]
notification_emailstrThe mail id to which new releases will be notified[optional]
}

Example

from sailpoint.v2024.models.managed_cluster_update_preferences import ManagedClusterUpdatePreferences

managed_cluster_update_preferences = ManagedClusterUpdatePreferences(
process_groups='',
update_state='DISABLED',
notification_email='[email protected]'
)

[Back to top]