Skip to main content

BaseSettings

Properties

NameTypeDescriptionNotes
IsEnabledBooleanIndicates whether the feature or configuration is enabled.[optional] [default to $false]
ClusterIdStringThe identifier of the cluster associated with this configuration, if applicable.[optional]

Examples

  • Prepare the resource
$BaseSettings = Initialize-BaseSettings  -IsEnabled true `
-ClusterId cluster-001
  • Convert the resource to JSON
$BaseSettings | ConvertTo-JSON

[Back to top]