From ea137bde9acee4075858065e11b3a8887cb58aec Mon Sep 17 00:00:00 2001 From: Squillario Date: Tue, 14 Sep 2021 20:52:10 -0400 Subject: [PATCH] update documentation --- .../Public/OME/Edit-OMESupportAssistGroup.ps1 | 6 +- .../Public/OME/Get-OMEAlertDefinition.ps1 | 4 +- DellOpenManage/Public/OME/Get-OMEWarranty.ps1 | 8 +- .../OME/Invoke-OMEMcmGroupAddMember.ps1 | 2 +- .../Invoke-OMEMcmGroupAssignBackupLead.ps1 | 8 +- .../OME/Invoke-OMEMcmGroupRetireLead.ps1 | 4 +- Documentation/CommandReference.md | 3 +- Documentation/Functions/Get-OMEAlert.md | 397 ++++++++++++++++++ Documentation/Functions/Get-OMEAuditLog.md | 41 ++ .../Get-OMEConfigurationCompliance.md | 17 +- Documentation/Functions/Get-OMEMXDomain.md | 71 ++++ .../Functions/Get-OMESupportAssistCase.md | 73 ++++ .../Functions/Invoke-OMEMcmGroupRetireLead.md | 40 +- .../Functions/Invoke-OMETemplateDeploy.md | 8 +- Documentation/Functions/New-OMEDiscovery.md | 18 +- RELEASE.md | 5 + 16 files changed, 632 insertions(+), 73 deletions(-) create mode 100644 Documentation/Functions/Get-OMEAlert.md create mode 100644 Documentation/Functions/Get-OMEAuditLog.md create mode 100644 Documentation/Functions/Get-OMEMXDomain.md create mode 100644 Documentation/Functions/Get-OMESupportAssistCase.md diff --git a/DellOpenManage/Public/OME/Edit-OMESupportAssistGroup.ps1 b/DellOpenManage/Public/OME/Edit-OMESupportAssistGroup.ps1 index 3492e11..b75bef2 100644 --- a/DellOpenManage/Public/OME/Edit-OMESupportAssistGroup.ps1 +++ b/DellOpenManage/Public/OME/Edit-OMESupportAssistGroup.ps1 @@ -50,15 +50,15 @@ limitations under the License. Edit Support Assist group from json stored in variable .EXAMPLE - Get-OMEGroup "Test Group 01" | Edit-OMEGroup -EditGroup $(Get-Content "C:\Temp\Group.json" -Raw) + Get-OMEGroup "Test Group 01" | Edit-OMESupportAssistGroup -EditGroup $(Get-Content "C:\Temp\Group.json" -Raw) Edit Support Assist group from json stored in file .EXAMPLE - Get-OMEGroup "Test Group 01" | Edit-OMEGroup -Devices $("PowerEdge R640" | Get-OMEDevice -FilterBy "Model") + Get-OMEGroup "Test Group 01" | Edit-OMESupportAssistGroup -Devices $("PowerEdge R640" | Get-OMEDevice -FilterBy "Model") Add devices to group .EXAMPLE - Get-OMEGroup "Test Group 01" | Edit-OMEGroup -Mode "Remove" -Devices $("PowerEdge R640" | Get-OMEDevice -FilterBy "Model") + Get-OMEGroup "Test Group 01" | Edit-OMESupportAssistGroup -Mode "Remove" -Devices $("PowerEdge R640" | Get-OMEDevice -FilterBy "Model") Remove devices from group #> diff --git a/DellOpenManage/Public/OME/Get-OMEAlertDefinition.ps1 b/DellOpenManage/Public/OME/Get-OMEAlertDefinition.ps1 index 88f0c8e..2f7dc86 100644 --- a/DellOpenManage/Public/OME/Get-OMEAlertDefinition.ps1 +++ b/DellOpenManage/Public/OME/Get-OMEAlertDefinition.ps1 @@ -32,9 +32,7 @@ limitations under the License. Group[] String[] .EXAMPLE - Get-OMEDevice -Value 12016 - - Get device by Id + Get-OMEAlertDefinition #> [CmdletBinding()] diff --git a/DellOpenManage/Public/OME/Get-OMEWarranty.ps1 b/DellOpenManage/Public/OME/Get-OMEWarranty.ps1 index 8509d9c..9fd1d19 100644 --- a/DellOpenManage/Public/OME/Get-OMEWarranty.ps1 +++ b/DellOpenManage/Public/OME/Get-OMEWarranty.ps1 @@ -28,13 +28,9 @@ function Get-OMEWarranty { .INPUTS String[] .EXAMPLE - Get-OMEUser | Format-Table + Get-OMEWarranty | Format-Table - List all users - .EXAMPLE - "admin" | Get-OMEUser - - Get user by name + List all warranty details #> [CmdletBinding()] diff --git a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAddMember.ps1 b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAddMember.ps1 index d4cdd4e..caee86d 100644 --- a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAddMember.ps1 +++ b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAddMember.ps1 @@ -23,7 +23,7 @@ function Invoke-OMEMcmGroupAddMember { Add all possible members to MCM Group .DESCRIPTION - This script uses the OME REST API to create mcm group, find memebers and add the members to the group. + This script uses the OME REST API to add all available chassis to the MCM Group .PARAMETER GroupName The Name of the MCM Group. diff --git a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAssignBackupLead.ps1 b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAssignBackupLead.ps1 index d251ddd..33dc345 100644 --- a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAssignBackupLead.ps1 +++ b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupAssignBackupLead.ps1 @@ -23,14 +23,20 @@ function Invoke-OMEMcmGroupAssignBackupLead { Assign backup lead chassis to MCM Group .DESCRIPTION - This script uses the OME REST API to create mcm group, find memebers and add the members to the group. + This script uses the OME REST API to add a backup lead chassis .PARAMETER ServiceTag Service Tag of chassis to assign as backup lead .EXAMPLE Invoke-OMEMcmGroupAssignBackupLead -Wait + + Assign backup lead to random chassis + .EXAMPLE + Invoke-OMEMcmGroupAssignBackupLead -ServiceTag "XYZ1234" -Wait + + Assign backup lead to specific chassis #> [CmdletBinding()] param( diff --git a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupRetireLead.ps1 b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupRetireLead.ps1 index c84efb0..eb29d81 100644 --- a/DellOpenManage/Public/OME/Invoke-OMEMcmGroupRetireLead.ps1 +++ b/DellOpenManage/Public/OME/Invoke-OMEMcmGroupRetireLead.ps1 @@ -66,10 +66,10 @@ function Invoke-OMEMcmGroupRetireLead { <# .SYNOPSIS - Assign backup lead chassis to MCM Group + Retire lead chassis in MCM Group .DESCRIPTION - This script uses the OME REST API to create mcm group, find memebers and add the members to the group. + This script uses the OME REST API to reture lead chassis .PARAMETER Force Not implemented diff --git a/Documentation/CommandReference.md b/Documentation/CommandReference.md index fa33e64..f2393ae 100644 --- a/Documentation/CommandReference.md +++ b/Documentation/CommandReference.md @@ -5,8 +5,8 @@ - [Edit-OMEGroup](Functions/Edit-OMEGroup.md) - [Edit-OMESecurityBanner](Functions/Edit-OMESecurityBanner.md) - [Edit-OMESupportAssistGroup](Functions/Edit-OMESupportAssistGroup.md) -- [Get-OMEAlertDefinition](Functions/Get-OMEAlertDefinition.md) - [Get-OMEAlert](Functions/Get-OMEAlert.md) +- [Get-OMEAlertDefinition](Functions/Get-OMEAlertDefinition.md) - [Get-OMEAuditLog](Functions/Get-OMEAuditLog.md) - [Get-OMECatalog](Functions/Get-OMECatalog.md) - [Get-OMEConfigurationBaseline](Functions/Get-OMEConfigurationBaseline.md) @@ -285,6 +285,7 @@ - Id (string Id {get;set;}) - IgnoreCertificateWarning (bool IgnoreCertificateWarning {get;set;}) - Token (string Token {get;set;}) +- Version (version Version {get;set;}) ## SupportAssistGroup - ContactOptIn (bool ContactOptIn {get;set;}) - CustomerDetails (psobject CustomerDetails {get;set;}) diff --git a/Documentation/Functions/Get-OMEAlert.md b/Documentation/Functions/Get-OMEAlert.md new file mode 100644 index 0000000..980a7ec --- /dev/null +++ b/Documentation/Functions/Get-OMEAlert.md @@ -0,0 +1,397 @@ +--- +external help file: DellOpenManage-help.xml +Module Name: DellOpenManage +online version: +schema: 2.0.0 +--- + +# Get-OMEAlert + +## SYNOPSIS +Retrieves alerts from a target OME Instance. + +## SYNTAX + +``` +Get-OMEAlert [[-Top] ] [[-Pages] ] [[-Skip] ] [[-Orderby] ] [[-Id] ] + [[-AlertDeviceId] ] [[-AlertDeviceIdentifier] ] [[-AlertDeviceType] ] + [[-SeverityType] ] [[-StatusType] ] [[-CategoryName] ] [-GetSubcategories] + [[-SubcategoryId] ] [[-SubcategoryName] ] [[-Message] ] [[-TimeStampBegin] ] + [[-TimeStampEnd] ] [[-AlertByDeviceName] ] [[-AlertsByGroupName] ] + [[-AlertsByGroupDescription] ] [] +``` + +## DESCRIPTION +This script provides a large number of ways to get alerts with various filters. +With no arguments it will pull all +alerts from the OME instance. +The below filters are available: + +- top - Pull top records +- skip - Skip N number of records +- orderby - Order by a specific column +- id - Filter by the OME internal event ID +- Alert device ID - Filter by the OME internal ID for the device +- Alert Device Identifier / Service Tag - Filter by the device identifier or service tag of a device +- Device type - Filter by device type (server, chassis, etc) +- Severity type - The severity of the alert - warning, critical, info, etc +- Status type - The status of the device - normal, warning, critical, etc +- Category Name - The type of alert generated. +Audit, configuration, storage, system health, etc +- Subcategory ID - Filter by a specific subcategory. +The list is long - see the --get-subcategories option for details +- Subcategory name - Same as above except the name of the category instead of the ID +- Message - Filter by the message generated with the alert +- TimeStampBegin - Not currently available. +See https://github.com/dell/OpenManage-Enterprise/issues/101 +- TimeStampEnd - Not currently available. +See https://github.com/dell/OpenManage-Enterprise/issues/101 +- Device name - Filter by a specific device name +- Group name - Filter alerts by a group name +- Group description - Filter alerts by a group description + +Authentication is done over x-auth with basic authentication. +Note: Credentials are not stored on disk. + +## EXAMPLES + +### EXAMPLE 1 +``` +$creds = Get-Credential +Get-Alerts.ps1 -CategoryName SYSTEM_HEALTH -Top 10 +Get-Alerts.ps1 -Top 5 -Skip 3 -Orderby TimeStampAscending -StatusType CRITICAL +``` + +## PARAMETERS + +### -Top +Top records to return. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Pages +You will generally not need to change this unless you are using a large value for top +- typically more than 50 devices. +In the UI the results come in pages. +Even when +not using the UI the results are still delivered in 'pages'. +The 'top' argument +effectively sets the page size to the value you select and will return *everything* +, albeit much slower, by iterating over all pages in OME. +To prevent this we tell it +to only return a certain number of pages. +By default this value is 1. +If you want +more than one page of results you can set this. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +The number of records, starting at the top, to skip. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Orderby +Order to apply to the output. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +Filter by the OME internal event ID. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertDeviceId +Filter by OME internal device ID. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 6 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertDeviceIdentifier +Filter by the device identifier. +For servers this is the service tag. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 7 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertDeviceType +Filter by device type. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 8 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SeverityType +Filter by the severity type of the alert. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 9 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StatusType +Filter by status type of the device. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 10 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CategoryName +Filter by category name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 11 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GetSubcategories +Grabs a list of subcategories from the OME instance. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubcategoryId +Filter by subcategory ID. +To get a list of subcategory IDs available run this program +with the --get-subcategories option. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 12 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubcategoryName +Filter by subcategory name. +To get a list of subcategory names available run this +program with the --get-subcategories option. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 13 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Message +Filter by message. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 14 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TimeStampBegin +Filter by starting time of alerts. +This is not currently implemented. +See: https://github.com/dell/OpenManage-Enterprise/issues/101 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 15 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TimeStampEnd +Filter by ending time of alerts. +This is not currently implemented. +See: https://github.com/dell/OpenManage-Enterprise/issues/101 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 16 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertByDeviceName +{{ Fill AlertByDeviceName Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 17 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertsByGroupName +The name of the group on which you want to filter. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 18 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AlertsByGroupDescription +The description of the group on which you want to filter. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 19 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Documentation/Functions/Get-OMEAuditLog.md b/Documentation/Functions/Get-OMEAuditLog.md new file mode 100644 index 0000000..adbd20b --- /dev/null +++ b/Documentation/Functions/Get-OMEAuditLog.md @@ -0,0 +1,41 @@ +--- +external help file: DellOpenManage-help.xml +Module Name: DellOpenManage +online version: +schema: 2.0.0 +--- + +# Get-OMEAuditLog + +## SYNOPSIS +Retrieves the audit logs from a target OME instance + +## SYNTAX + +``` +Get-OMEAuditLog [] +``` + +## DESCRIPTION +It performs X-Auth with basic authentication. +Note: Credentials are not stored on disk. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-OMEAuditLog | Format-Table +``` + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Documentation/Functions/Get-OMEConfigurationCompliance.md b/Documentation/Functions/Get-OMEConfigurationCompliance.md index d56ac41..f126a64 100644 --- a/Documentation/Functions/Get-OMEConfigurationCompliance.md +++ b/Documentation/Functions/Get-OMEConfigurationCompliance.md @@ -14,7 +14,7 @@ Get device configuration compliance report from OpenManage Enterprise ``` Get-OMEConfigurationCompliance [[-Baseline] ] [[-DeviceFilter] ] - [[-Output] ] [] + [] ``` ## DESCRIPTION @@ -69,21 +69,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Output -{{ Fill Output Description }} - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: Report -Accept pipeline input: False -Accept wildcard characters: False -``` - ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/Documentation/Functions/Get-OMEMXDomain.md b/Documentation/Functions/Get-OMEMXDomain.md new file mode 100644 index 0000000..5798263 --- /dev/null +++ b/Documentation/Functions/Get-OMEMXDomain.md @@ -0,0 +1,71 @@ +--- +external help file: DellOpenManage-help.xml +Module Name: DellOpenManage +online version: +schema: 2.0.0 +--- + +# Get-OMEMXDomain + +## SYNOPSIS +Get MX domains (chassis) from OpenManage Enterprise + +## SYNTAX + +``` +Get-OMEMXDomain [[-RoleType] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-OMEMXDomain | Format-List +List all domains +``` + +### EXAMPLE 2 +``` +"LEAD" | Get-OMEMXDomain | Format-List +``` + +List lead chassis + +### EXAMPLE 3 +``` +"BACKUPLEAD" | Get-OMEMXDomain | Format-List +``` + +List backup lead chassis + +## PARAMETERS + +### -RoleType +Filter the results by role type (Default="ALL", "LEAD", "BACKUPLEAD", "MEMBER") + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: ALL +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### String +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Documentation/Functions/Get-OMESupportAssistCase.md b/Documentation/Functions/Get-OMESupportAssistCase.md new file mode 100644 index 0000000..06961f9 --- /dev/null +++ b/Documentation/Functions/Get-OMESupportAssistCase.md @@ -0,0 +1,73 @@ +--- +external help file: DellOpenManage-help.xml +Module Name: DellOpenManage +online version: +schema: 2.0.0 +--- + +# Get-OMESupportAssistCase + +## SYNOPSIS +Get list of Identity Pools from OME + +## SYNTAX + +``` +Get-OMESupportAssistCase [[-Value] ] [[-FilterBy] ] [] +``` + +## DESCRIPTION +This script uses the OME REST API. +Note that the credentials entered are not stored to disk. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-OMESupportAssistCase | Format-Table +``` + +## PARAMETERS + +### -Value +String containing search value. +Use with -FilterBy parameter. +Supports regex based matching. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -FilterBy +Filter the results by ("EventSource", "Id", "ServiceContract", Default="ServiceTag") + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: ServiceTag +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Documentation/Functions/Invoke-OMEMcmGroupRetireLead.md b/Documentation/Functions/Invoke-OMEMcmGroupRetireLead.md index 0b51559..85befe7 100644 --- a/Documentation/Functions/Invoke-OMEMcmGroupRetireLead.md +++ b/Documentation/Functions/Invoke-OMEMcmGroupRetireLead.md @@ -13,8 +13,8 @@ Assign backup lead chassis to MCM Group ## SYNTAX ``` -Invoke-OMEMcmGroupRetireLead [[-ServiceTag] ] [[-PostRetirementRoleType] ] [-Force] [-Wait] - [[-WaitTime] ] [] +Invoke-OMEMcmGroupRetireLead [[-PostRetirementRoleType] ] [-Wait] [[-WaitTime] ] + [] ``` ## DESCRIPTION @@ -29,23 +29,8 @@ Invoke-OMEMcmGroupRetireLead -Wait ## PARAMETERS -### -ServiceTag -Service Tag of chassis to assign as backup lead - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PostRetirementRoleType -{{ Fill PostRetirementRoleType Description }} +Role to assign to retired chassis (Default="Member", "Standalone") ```yaml Type: String @@ -53,27 +38,12 @@ Parameter Sets: (All) Aliases: Required: False -Position: 2 +Position: 1 Default value: Member Accept pipeline input: False Accept wildcard characters: False ``` -### -Force -{{ Fill Force Description }} - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Wait {{ Fill Wait Description }} @@ -98,7 +68,7 @@ Parameter Sets: (All) Aliases: Required: False -Position: 3 +Position: 2 Default value: 3600 Accept pipeline input: False Accept wildcard characters: False diff --git a/Documentation/Functions/Invoke-OMETemplateDeploy.md b/Documentation/Functions/Invoke-OMETemplateDeploy.md index f1c275e..3a298f3 100644 --- a/Documentation/Functions/Invoke-OMETemplateDeploy.md +++ b/Documentation/Functions/Invoke-OMETemplateDeploy.md @@ -16,8 +16,8 @@ Deploy template to device in OpenManage Enterprise Invoke-OMETemplateDeploy [-Template]