Retrieve the list of available data sources.
Get-RDMDataSource [[-Name] <string>] [-CaseSensitive] [<CommonParameters>]
Retrieve the list of available data sources.
PS C:\> $list = Get-RDMDataSource
Retrieves the list of available data sources.
PS C:\> $list = Get-RDMDataSource; $list[0]
Retrieves the list of available data sources and displays the first item.
PS C:\> $list = Get-RDMDataSource; Set-RDMDataSource $list[1].ID
Retrieves the list of available data sources and sets the current data source the the second element in the list.
Case sensitive
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
Data source name
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: 0
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
For more information, type "Get-Help Get-RDMDataSource -detailed". For technical information, type "Get-Help Get-RDMDataSource -full".