-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added documentation for `Remove-NsxtGlobalManagerStandby`. - Added documentation for `Undo-NsxtGlobalManagerStandby`. Signed-off-by: Gary Blake <gblake@vmware.com>
- Loading branch information
1 parent
56cfa6a
commit 88ac59c
Showing
5 changed files
with
195 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
docs/documentation/functions/nsx/Remove-NsxtGlobalManagerStandby.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Remove-NsxtGlobalManagerStandby | ||
|
||
## Synopsis | ||
|
||
Deletes the standby mode configuration from the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Remove-NsxtGlobalManagerStandby [-standbyServer] <String> [-displayName] <String> [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Remove-NsxtGlobalManagerStandby` cmdlet deletes the standby mode configuration from the NSX Global Manager. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Remove-NsxtGlobalManagerStandby -standbyServer lax-m01-nsx-gm01.lax.rainpole.io -displayName lax-m01-nsx-gm01 | ||
``` | ||
|
||
This example deletes the standby mode configuration from the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -standbyServer | ||
|
||
The fully qualified domain name of the standby NSX Global Manager. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 1 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -displayName | ||
Display name of the standby NSX Global Manager. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 2 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### Common Parameters | ||
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). |
114 changes: 114 additions & 0 deletions
114
docs/documentation/functions/nsx/Undo-NsxtGlobalManagerStandby.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# Undo-NsxtGlobalManagerStandby | ||
|
||
## Synopsis | ||
|
||
Remove the standby mode configuration from the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Undo-NsxtGlobalManagerStandby [-server] <String> [-user] <String> [-pass] <String> [-standbyServer] <String> [-standbyDisplayName] <String> [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
The `Undo-NsxtGlobalManagerStandby` cmdlet removes the standby mode configuration from the NSX Global Manager. | ||
|
||
- Validates that network connectivity and authentication is possible to NSX Global Manager | ||
- Removes the standby mode configuration from the NSX Global Manager | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Undo-NsxtGlobalManagerStandby -server sfo-m01-nsx-gm01.sfo.rainpole.io -user admin -pass VMw@re1!VMw@re1! -standbyServer lax-m01-nsx-gm01.lax.rainpole.io -standbyDisplayName lax-m01-nsx-gm01 | ||
``` | ||
|
||
This example the standby mode configuration from the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -server | ||
|
||
The fully qualified domain name of the active NSX Global Manager. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 1 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -user | ||
The username to authenticate to the NSX active Global Manager. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 2 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -pass | ||
The password to authenticate to the active NSX Global Manager. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 3 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -standbyServer | ||
The fully qualified domain name of the standby NSX Global Manager. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 4 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -standbyDisplayName | ||
Display name of the standby NSX Global Manager. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 5 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### Common Parameters | ||
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters