-
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.
feat: add pca solution interop (#652)
- Added `Invoke-PcaSolutionInterop` cmdlet to perform solution interoperability configuration for Private Cloud Automation. - Added `Invoke-UndoPcaSolutionInterop` cmdlet to perform the removal of solution interoperability configuration for Private Cloud Automation. - Fixed `Get-vRAIntegrationDetail` cmdlet where by it was passing output incorrectly. - Enhanced `New-vRAvROPSIntegrationItem` cmdlet for better error checking and message handling. - Enhanced `Undo-vRAvROPsIntegrationItem` cmdlet for better error checking and message handling. - Enhanced `Update-vROPSvRAAdapterCredential` cmdlet to reduce the number of inputs required. - Added Documentation Signed-off-by: Gary Blake <gblake@vmware.com>
- Loading branch information
1 parent
f7ba07d
commit 2918801
Showing
10 changed files
with
462 additions
and
125 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
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.
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
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
50 changes: 50 additions & 0 deletions
50
docs/documentation/functions/solutions/pca/Invoke-PcaSolutionInterop.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,50 @@ | ||
# Invoke-PcaSolutionInterop | ||
|
||
## Synopsis | ||
|
||
Configure solution interoperability for Private Cloud Automation. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Invoke-PcaSolutionInterop [-jsonFile] <String> [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Invoke-PcaSolutionInterop` cmdlet is a single function to configure the solution interoperability of the Private Cloud Automation for VMware Cloud Foundation validated solution for: | ||
|
||
- Monitoring and Alerting | ||
- Logging | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Invoke-PcaSolutionInterop -jsonFile .\pcaDeploySpec.json | ||
``` | ||
|
||
This example configures solution interoperability of the Private Cloud Automation for VMware Cloud Foundation using the JSON spec supplied | ||
|
||
## Parameters | ||
|
||
### -jsonFile | ||
|
||
The JSON (.json) file created. | ||
|
||
```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). |
49 changes: 49 additions & 0 deletions
49
docs/documentation/functions/solutions/pca/Invoke-UndoPcaSolutionInterop.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,49 @@ | ||
# Invoke-UndoPcaSolutionInterop | ||
|
||
## Synopsis | ||
|
||
Remove solution interoperability for Private Cloud Automation. | ||
|
||
## Syntax | ||
|
||
```powershell | ||
Invoke-UndoPcaSolutionInterop [-jsonFile] <String> [<CommonParameters>] | ||
``` | ||
|
||
## Description | ||
|
||
The `Invoke-UndoPcaSolutionInterop` cmdlet is a single function to remove the solution interoperability of the Private Cloud Automation for VMware Cloud Foundation validated solution for: | ||
|
||
- Monitoring and Alerting | ||
|
||
## Examples | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Invoke-UndoPcaSolutionInterop -jsonFile .\pcaDeploySpec.json | ||
``` | ||
|
||
This example removes solution interoperability of the Private Cloud Automation for VMware Cloud Foundation using the JSON spec supplied. | ||
|
||
## Parameters | ||
|
||
### -jsonFile | ||
|
||
The JSON (.json) file created. | ||
|
||
```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). |
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