-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit from GitHub Actions (Build Documentation Site)
- Loading branch information
1 parent
6ff1ee7
commit ad0a81a
Showing
16 changed files
with
1,489 additions
and
230 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
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,192 @@ | ||
<!DOCTYPE html> | ||
<!--[if IE]><![endif]--> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>Get-PnPPowerPlatformCustomConnector | PnP PowerShell </title> | ||
<meta name="viewport" content="width=device-width"> | ||
<meta name="title" content="Get-PnPPowerPlatformCustomConnector | PnP PowerShell "> | ||
<meta name="generator" content="docfx "> | ||
<meta name="description" content="PnP PowerShell is an open source, community driven, PowerShell Module designed to work with Microsoft 365."> | ||
<link rel="shortcut icon" href="https://c.s-microsoft.com/favicon.ico?v2"> | ||
<link rel="stylesheet" href="../styles/docfx.vendor.css"> | ||
<link rel="stylesheet" href="../styles/docfx.css"> | ||
<link rel="stylesheet" href="../styles/main.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> | ||
<meta property="docfx:navrel" content="../toc.html"> | ||
<meta property="docfx:tocrel" content="toc.html"> | ||
|
||
<meta property="docfx:rel" content="../"> | ||
<meta property="docfx:newtab" content="true"> | ||
</head> <body data-spy="scroll" data-target="#affix" data-offset="120"> | ||
<div id="wrapper"> | ||
<header> | ||
|
||
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
|
||
<a class="navbar-brand" href="../index.html"> | ||
<img id="logo" class="svg" src="../images/logo.svg" alt=""> | ||
</a> | ||
</div> | ||
<div class="collapse navbar-collapse" id="navbar"> | ||
<form class="navbar-form navbar-right" role="search" id="search"> | ||
<div class="form-group"> | ||
<label class="glyphicon glyphicon-search" for="search-query"></label> | ||
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="subnav navbar navbar-default"> | ||
<div class="container hide-when-search" id="breadcrumb"> | ||
<ul class="breadcrumb"> | ||
<li></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</header> | ||
<div class="container body-content"> | ||
|
||
<div id="search-results"> | ||
<div class="search-list">Search Results for <span></span></div> | ||
<div class="sr-items"> | ||
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p> | ||
</div> | ||
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul> | ||
</div> | ||
</div> | ||
<div role="main" class="container body-content hide-when-search"> | ||
|
||
<div class="sidenav hide-when-search"> | ||
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> | ||
<div class="sidetoggle collapse" id="sidetoggle"> | ||
<div id="sidetoc"></div> | ||
</div> | ||
</div> | ||
<div class="article row grid-right"> | ||
<div class="col-md-10"> | ||
<article class="content wrap" id="_content" data-uid=""> | ||
<div class="pnp_tags">Available in the current Nightly Release only.</div> | ||
<div class="contribution-panel mobile-hide pull-right"> | ||
<a href="https://github.com/pnp/powershell/blob/dev/documentation/#L1" title="Edit this page" class="improve-doc-lg"><i class="glyphicon glyphicon-pencil"></i></a> | ||
</div> | ||
<h1 id="get-pnppowerplatformcustomconnector">Get-PnPPowerPlatformCustomConnector</h1> | ||
|
||
<h2 id="synopsis">SYNOPSIS</h2> | ||
<p><strong>Required Permissions</strong></p> | ||
<ul> | ||
<li>Azure: management.azure.com</li> | ||
</ul> | ||
<p>Returns the custom Power Platform Connectors for a given environment</p> | ||
<h2 id="syntax">SYNTAX</h2> | ||
<pre><code class="lang-powershell">Get-PnPPowerPlatformCustomConnector [-Environment <PowerPlatformEnvironmentPipeBind>] [-Identity <PowerPlatformConnectorPipeBind>] [-AsAdmin] [-Verbose] | ||
</code></pre> | ||
<h2 id="description">DESCRIPTION</h2> | ||
<p>This cmdlet returns the custom connectors on a given enviroment.</p> | ||
<h2 id="examples">EXAMPLES</h2> | ||
<h3 id="example-1">Example 1</h3> | ||
<pre><code class="lang-powershell">Get-PnPPowerPlatformCustomConnector -Environment (Get-PnPPowerPlatformEnvironment) | ||
</code></pre> | ||
<p>This returns all the custom connectors for a given Power Platform environment</p> | ||
<h3 id="example-2">Example 2</h3> | ||
<pre><code class="lang-powershell">Get-PowerPlatformConnectorPipeBind -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity fba63225-baf9-4d76-86a1-1b42c917a182 | ||
</code></pre> | ||
<p>This returns a specific custom connector on the default Power Platform environment</p> | ||
<h2 id="parameters">PARAMETERS</h2> | ||
<h3 id="-environment">-Environment</h3> | ||
<p>The name of the Power Platform environment or an Environment instance to retrieve the available custom connectors for. If omitted, the default environment will be used.</p> | ||
<pre><code class="lang-yaml">Type: PowerPlatformEnvironmentPipeBind | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: The default environment | ||
Accept pipeline input: True | ||
Accept wildcard characters: False | ||
</code></pre> | ||
<h3 id="-identity">-Identity</h3> | ||
<p>The Id of the connector to retrieve. If not provided, all custom connectors will be returned.</p> | ||
<pre><code class="lang-yaml">Type: PowerPlatformConnectorPipeBind | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
</code></pre> | ||
<h3 id="-asadmin">-AsAdmin</h3> | ||
<p>If specified returns all the custom connectors as admin. If not specified only the custom connectors for the current user will be returned.</p> | ||
<pre><code class="lang-yaml">Type: SwitchParameter | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
</code></pre> | ||
<h3 id="-verbose">-Verbose</h3> | ||
<p>When provided, additional debug statements will be shown while executing the cmdlet.</p> | ||
<pre><code class="lang-yaml">Type: SwitchParameter | ||
Parameter Sets: (All) | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
</code></pre> | ||
<h2 id="related-links">RELATED LINKS</h2> | ||
<p><a href="https://aka.ms/m365pnp">Microsoft 365 Patterns and Practices</a></p> | ||
|
||
</article> | ||
</div> | ||
<div class="hidden-sm col-md-2" role="complementary"> | ||
<div class="sideaffix"> | ||
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> | ||
</nav> | ||
</div> | ||
</div> </div> | ||
</div> | ||
|
||
<footer> | ||
<div class="grad-bottom"></div> | ||
<div class="footer"> | ||
<div class="container"> | ||
<span class="pull-right"> | ||
<a href="#top">Back to top</a> | ||
</span> | ||
|
||
<span>Generated by <strong>DocFX</strong></span> | ||
<img src="https://m365-visitor-stats.azurewebsites.net/@pnp.github.io/index/" alt="spacer"> | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
<script type="text/javascript" src="../styles/docfx.vendor.js"></script> | ||
<script type="text/javascript" src="../styles/docfx.js"></script> | ||
<script type="text/javascript" src="../styles/main.js"></script> | ||
<script type="text/javascript"> | ||
(function(c,l,a,r,i,t,y){ | ||
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; | ||
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; | ||
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); | ||
})(window, document, "clarity", "script", "ag6usxufyq"); | ||
</script> </body> | ||
</html> |
Oops, something went wrong.