Skip to main content

ManagedClusterUpdatePreferences

Properties

NameTypeDescriptionNotes
ProcessGroupsStringThe processGroups for updatePreferences[optional]
UpdateStateEnum [ "AUTO", "DISABLED" ]The current updateState for the cluster[optional]
NotificationEmailStringThe mail id to which new releases will be notified[optional]

Examples

  • Prepare the resource
$ManagedClusterUpdatePreferences = Initialize-ManagedClusterUpdatePreferences  -ProcessGroups processGroup1 `
-UpdateState DISABLED `
-NotificationEmail test@mail.com
  • Convert the resource to JSON
$ManagedClusterUpdatePreferences | ConvertTo-JSON

[Back to top]