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.managed_clusters.models.managedcluster_update_preferences import ManagedclusterUpdatePreferences

managedcluster_update_preferences = ManagedclusterUpdatePreferences(
process_groups='processGroup1',
update_state='DISABLED',
notification_email='test@mail.com'
)

[Back to top]