Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ManagedClusterUpdatePreferences.md
2025-05-07 14:37:48 +00:00

1.3 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-update-preferences ManagedClusterUpdatePreferences ManagedClusterUpdatePreferences ManagedClusterUpdatePreferences powershellsdk
powershell
PowerShell
sdk
ManagedClusterUpdatePreferences
V2024ManagedClusterUpdatePreferences
/tools/sdk/powershell/v2024/models/managed-cluster-update-preferences
SDK
Software Development Kit
ManagedClusterUpdatePreferences
V2024ManagedClusterUpdatePreferences

ManagedClusterUpdatePreferences

Properties

Name Type Description Notes
ProcessGroups String The processGroups for updatePreferences [optional]
UpdateState Enum [ "AUTO", "DISABLED" ] The current updateState for the cluster [optional]
NotificationEmail String The mail id to which new releases will be notified [optional]

Examples

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

[Back to top]