< Back

Get-AdminPowerAppConnector

Sat Jan 18, 2020 3:47 pm

NAME Get-AdminPowerAppConnector



SYNOPSIS

Returns information about one or more custom connectors.





SYNTAX

Get-AdminPowerAppConnector [[-Filter] <String[]>] [-EnvironmentName <String>] [-CreatedBy <String>] [-ApiVersion

<String>] [<CommonParameters>]



Get-AdminPowerAppConnector [[-Filter] <String[]>] [-EnvironmentName <String>] -CreatedBy <String> [-ApiVersion

<String>] [<CommonParameters>]



Get-AdminPowerAppConnector [-EnvironmentName <String>] -ConnectorName <String> [-ApiVersion <String>]

[<CommonParameters>]





DESCRIPTION

The Get-AdminConnector looks up information about one or more custom connectors depending on parameters.

Use Get-Help Get-AdminConnector -Examples for more detail.





PARAMETERS

-Filter <String[]>

Finds custom connector matching the specified filter (wildcards supported).



Required? false

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-EnvironmentName <String>

Limit custom connectors returned to those in a specified environment.



Required? false

Position? named

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-ConnectorName <String>

Limit custom connectors returned to those of a specified connector.



Required? true

Position? named

Default value

Accept pipeline input? true (ByPropertyName)

Accept wildcard characters? false



-CreatedBy <String>

Limit custom connectors returned to those created by the specified user (email or AAD Principal object id)



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-ApiVersion <String>

The api version to call with. Default 2017-05-01



Required? false

Position? named

Default value 2017-05-01

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-AdminConnector



Returns all custom connector from all environments where the calling user is an Environment Admin. For Global

admins, this will search across all environments in the tenant.









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Get-AdminConnector *customapi*



Returns all custom connectors with the text "customapi" in the name/display name from all environments where the

calling user is an Environment Admin For Global admins, this will search across all environments in the tenant.









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>Get-AdminConnector -CreatedBy foo@bar.onmicrosoft.com



Returns all apps created by the user with an email of "foo@bar.onmicrosoft.com" from all environment where the

calling user is an Environment Admin. For Global admins, this will search across all environments in the tenant.









-------------------------- EXAMPLE 4 --------------------------



PS C:\\>Get-AdminConnector -EnvironmentName 0fc02431-15fb-4563-a5ab-8211beb2a86f



Finds custom connectors within the 0fc02431-15fb-4563-a5ab-8211beb2a86f environment









-------------------------- EXAMPLE 5 --------------------------



PS C:\\>Get-AdminConnector -ConnectorName shared_customapi2.5f0629412a7d1fe83e.5f6f049093c9b7a698



Finds all custom connectosr created with name/id shared_customapi2.5f0629412a7d1fe83e.5f6f049093c9b7a698 from all

environments where the calling user is an Environment Admin. For Global admins, this will search across all

environments in the tenant.









-------------------------- EXAMPLE 6 --------------------------



PS C:\\>Get-AdminConnector -ConnectorName shared_customapi2.5f0629412a7d1fe83e.5f6f049093c9b7a698 -EnvironmentName

0fc02431-15fb-4563-a5ab-8211beb2a86f



Finds connections within the 0fc02431-15fb-4563-a5ab-8211beb2a86f environment that are created against the

shared_customapi2.5f0629412a7d1fe83e.5f6f049093c9b7a698.









-------------------------- EXAMPLE 7 --------------------------



PS C:\\>Get-AdminConnector *customapi* -EnvironmentName 0fc02431-15fb-4563-a5ab-8211beb2a86f



Finds all connections in environment 0fc02431-15fb-4563-a5ab-8211beb2a86f that contain the string "customapi" in

their display name.











RELATED LINKS