-
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 `Import-NsxtGlobalManagerLocation` cmdlet to import NSX Local Manager objects into NSX Global Manager. - Added missing documentation. Signed-off-by: Gary Blake <gblake@vmware.com>
- Loading branch information
1 parent
a884876
commit 6c22aca
Showing
18 changed files
with
3,773 additions
and
2,625 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
132 changes: 132 additions & 0 deletions
132
docs/documentation/functions/nsx/Add-NsxtGlobalManagerTier1Gateway.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,132 @@ | ||
# Add-NsxtGlobalManagerTier1Gateway | ||
|
||
## Synopsis | ||
|
||
Create a Tier 1 Gateway on the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Add-NsxtGlobalManagerTier1Gateway [-server] <String> [-user] <String> [-pass] <String> [-tier1Gateway] <String> [-tier0Gateway] <String> [-location] <String> [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Add-NsxtGlobalManagerTier1Gateway` cmdlet creates a Tier 1 Gateway on the NSX Global Manager. | ||
|
||
- Validates that network connectivity and authentication are possible to NSX Global Manager. | ||
- Validates that the given tier 0 gateway and location exist in the NSX Global Manager. | ||
- Creates a Tier 1 Gateway on the NSX Global Manager. | ||
- Creates the locale service on Tier 1 Gateway. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Add-NsxtGlobalManagerTier1Gateway -server sfo-m01-nsx-gm01.sfo.rainpole.io -user admin -pass VMw@re1!VMw@re1! -tier1Gateway xint-m01-ec01-t1-gw01 -tier0Gateway sfo-m01-ec01-t0-gw01 -location sfo-m01 | ||
``` | ||
|
||
This example creates a Tier 1 Gateway on the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -server | ||
|
||
The fully qualified domain name of the 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 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 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 | ||
``` | ||
### -tier1Gateway | ||
The NSX Tier1 Gateway name to create. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 4 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -tier0Gateway | ||
The NSX Tier0 Gateway to connect to. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 5 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -location | ||
The name of the location. | ||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 6 | ||
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). |
47 changes: 47 additions & 0 deletions
47
docs/documentation/functions/nsx/Get-NsxtGlobalManagerEdgeCluster.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,47 @@ | ||
# Get-NsxtGlobalManagerEdgeCluster | ||
|
||
## Synopsis | ||
|
||
Retrieve the NSX Edge cluster information for the specified site. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerEdgeCluster [-siteId] <String> [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Get-NsxtGlobalManagerEdgeCluster` cmdlet retrieves the NSX Edge cluster information for the specified site. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerEdgeCluster -siteId sfo-m01 | ||
``` | ||
|
||
This example retrieves the NSX Edge cluster information for the specified site. | ||
|
||
## PARAMETERS | ||
|
||
### -siteId | ||
|
||
The ID of the site. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 1 | ||
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). |
55 changes: 55 additions & 0 deletions
55
docs/documentation/functions/nsx/Get-NsxtGlobalManagerSegment.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,55 @@ | ||
# Get-NsxtGlobalManagerSegment | ||
|
||
## Synopsis | ||
|
||
Retrieve the list of configured segments from the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerSegment [[-segmentId] <String>] [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Get-NsxtGlobalManagerSegment` cmdlet retrieves the list of configured segments from the NSX Global Manager. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerSegment | ||
``` | ||
|
||
This example retrieves the list of configured segments from the NSX Global Manager. | ||
|
||
### Example 2 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerSegment -segmentId "799a0af5-d89b-437b-836f-61361e114f6e" | ||
``` | ||
|
||
This example retrieves a configured segment from the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -segmentId | ||
|
||
The ID of the segment in the NSX Global Manager. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 1 | ||
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). |
55 changes: 55 additions & 0 deletions
55
docs/documentation/functions/nsx/Get-NsxtGlobalManagerTier0Gateway.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,55 @@ | ||
# Get-NsxtGlobalManagerTier0Gateway | ||
|
||
## Synopsis | ||
|
||
Retrieve a list of Tier-0 gateways from the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier0Gateway [[-id] <String>] [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Get-NsxtGlobalManagerTier0Gateway` cmdlet retrieves a list of Tier-0 gateways from the NSX Global Manager. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier0Gateway | ||
``` | ||
|
||
This example retrieves a list of Tier-0 gateways from the NSX Global Manager. | ||
|
||
### Example 2 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier0Gateway -id "92a3a3b4-a1d1-48a9-8190-dca8e44c18c1" | ||
``` | ||
|
||
This example retrieves a list of Tier-0 gateways from the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -id | ||
|
||
The ID of the Tier-0 Gateway. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 1 | ||
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). |
55 changes: 55 additions & 0 deletions
55
docs/documentation/functions/nsx/Get-NsxtGlobalManagerTier1Gateway.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,55 @@ | ||
# Get-NsxtGlobalManagerTier1Gateway | ||
|
||
## Synopsis | ||
|
||
Retrieve a list of Tier-1 gateways from the NSX Global Manager. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier1Gateway [[-id] <String>] [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Get-NsxtGlobalManagerTier1Gateway` cmdlet retrieves a list of Tier-1 gateways from the NSX Global Manager. | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier1Gateway | ||
``` | ||
|
||
This example retrieves a list of Tier-1 gateways from the NSX Global Manager. | ||
|
||
### Example 2 | ||
|
||
```powershell | ||
Get-NsxtGlobalManagerTier1Gateway -id xint-m01-ec01-t1-gw01 | ||
``` | ||
|
||
This example retrieves a list of Tier-1 gateways from the NSX Global Manager. | ||
|
||
## Parameters | ||
|
||
### -id | ||
|
||
The ID of the Tier-1 Gateway. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 1 | ||
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). |
Oops, something went wrong.