< Back

Get-AdminPowerAppConnection

Sat Jan 18, 2020 3:46 pm

NAME Get-AdminPowerAppConnection



SYNOPSIS

Returns information about one or more connection.





SYNTAX

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

<String>] [<CommonParameters>]



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

<String>] [<CommonParameters>]



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

[<CommonParameters>]





DESCRIPTION

The Get-AdminPowerAppConnection looks up information about one or more connections depending on parameters.

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





PARAMETERS

-Filter <String[]>

Finds connection matching the specified filter (wildcards supported).



Required? false

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-EnvironmentName <String>

Limit connections 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 connections 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 connections returned to those created by by the specified user (email or AAD object id)



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-ApiVersion <String>



Required? false

Position? named

Default value 2016-11-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-AdminPowerAppConnection



Returns all connection 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-AdminPowerAppConnection *PowerApps*



Returns all connection with the text "PowerApps" in the display namefrom 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-AdminPowerAppConnection -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-AdminPowerAppConnection -EnvironmentName 3c2f7648-ad60-4871-91cb-b77d7ef3c239



Finds connections within the 3c2f7648-ad60-4871-91cb-b77d7ef3c239 environment









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



PS C:\\>Get-AdminPowerAppConnection -ConnectorName shared_runtimeservice



Finds all connections created against the shared_runtimeservice (CDS) 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 6 --------------------------



PS C:\\>Get-AdminPowerAppConnection -ConnectorName shared_runtimeservice -EnvironmentName

3c2f7648-ad60-4871-91cb-b77d7ef3c239



Finds connections within the 3c2f7648-ad60-4871-91cb-b77d7ef3c239 environment that are created against the

shared_runtimeservice (CDS) connector.









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



PS C:\\>Get-AdminPowerAppConnection *Foobar* -EnvironmentName 3c2f7648-ad60-4871-91cb-b77d7ef3c239



Finds all connections in environment 3c2f7648-ad60-4871-91cb-b77d7ef3c239 that contain the string "Foobar" in

their display name.











RELATED LINKS