diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationFederatedIdentityCredential.md b/src/Applications/beta/examples/Get-MgBetaApplicationFederatedIdentityCredential.md index 8fd2f4105d..a7d401ae11 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationFederatedIdentityCredential.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaApplicationFederatedIdentityCredential -ApplicationId $applicationId +Get-MgBetaApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` This example shows how to use the Get-MgBetaApplicationFederatedIdentityCredential Cmdlet. diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationTemplate.md b/src/Applications/beta/examples/Get-MgBetaApplicationTemplate.md index 24f32956cc..d8b35bc5bc 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationTemplate.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationTemplate.md @@ -1,11 +1,22 @@ -### Example 1: Code snippet +### Example 1: Get application template ```powershell Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaApplicationTemplate +Get-MgBetaApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` -This example shows how to use the Get-MgBetaApplicationTemplate Cmdlet. +This example will get application template + +### Example 2: Get application template with optional properties + +```powershell + +Import-Module Microsoft.Graph.Beta.Applications + +Get-MgBetaApplicationTemplate -ApplicationTemplateId $applicationTemplateId -Property "id,displayName,riskScore,riskFactors" + +``` +This example will get application template with optional properties diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalSynchronizationTemplate.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalSynchronizationTemplate.md index d05037861a..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalSynchronizationTemplate.md +++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalSynchronizationTemplate.md @@ -1,11 +0,0 @@ -### Example - -```powershell - -Import-Module Microsoft.Graph.Beta.Applications - -Get-MgBetaServicePrincipalSynchronizationTemplate -ServicePrincipalId $servicePrincipalId - -``` -This example shows how to use the Get-MgBetaServicePrincipalSynchronizationTemplate Cmdlet. - diff --git a/src/Applications/v1.0/examples/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/v1.0/examples/Get-MgApplicationFederatedIdentityCredential.md index 7d152fa982..48a1be0605 100644 --- a/src/Applications/v1.0/examples/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/v1.0/examples/Get-MgApplicationFederatedIdentityCredential.md @@ -4,7 +4,7 @@ Import-Module Microsoft.Graph.Applications -Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId +Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` This example shows how to use the Get-MgApplicationFederatedIdentityCredential Cmdlet.