Skip to content

Commit ae26af1

Browse files
Microsoft Graph DevX ToolingFehintolaObafemi
Microsoft Graph DevX Tooling
authored andcommitted
Updated expected message
1 parent 6074b1f commit ae26af1

File tree

1 file changed

+39
-7
lines changed

1 file changed

+39
-7
lines changed

src/Authentication/docs/Connect-MgGraph.md

+39-7
Original file line numberDiff line numberDiff line change
@@ -16,38 +16,40 @@ Microsoft Graph PowerShell supports two types of authentication: delegated and a
1616
```
1717
Connect-MgGraph [[-Scopes] <String[]>] [[-ClientId] <String>] [-TenantId <String>]
1818
[-ContextScope <ContextScope>] [-Environment <String>] [-UseDeviceCode] [-ClientTimeout <Double>] [-NoWelcome]
19-
[<CommonParameters>]
19+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
2020
```
2121

2222
### AppCertificateParameterSet
2323
```
2424
Connect-MgGraph [-ClientId] <String> [[-CertificateSubjectName] <String>] [[-CertificateThumbprint] <String>]
25-
[-Certificate <X509Certificate2>] [-TenantId <String>] [-ContextScope <ContextScope>] [-Environment <String>]
26-
[-ClientTimeout <Double>] [-NoWelcome] [<CommonParameters>]
25+
[-SendCertificateChain <Boolean>] [-Certificate <X509Certificate2>] [-TenantId <String>]
26+
[-ContextScope <ContextScope>] [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome]
27+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
2728
```
2829

2930
### IdentityParameterSet
3031
```
3132
Connect-MgGraph [[-ClientId] <String>] [-ContextScope <ContextScope>] [-Environment <String>]
32-
[-ClientTimeout <Double>] [-Identity] [-NoWelcome] [<CommonParameters>]
33+
[-ClientTimeout <Double>] [-Identity] [-NoWelcome] [-ProgressAction <ActionPreference>] [<CommonParameters>]
3334
```
3435

3536
### AppSecretCredentialParameterSet
3637
```
3738
Connect-MgGraph [-ClientSecretCredential <PSCredential>] [-TenantId <String>] [-ContextScope <ContextScope>]
38-
[-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome] [<CommonParameters>]
39+
[-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome] [-ProgressAction <ActionPreference>]
40+
[<CommonParameters>]
3941
```
4042

4143
### AccessTokenParameterSet
4244
```
4345
Connect-MgGraph [-AccessToken] <SecureString> [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome]
44-
[<CommonParameters>]
46+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
4547
```
4648

4749
### EnvironmentVariableParameterSet
4850
```
4951
Connect-MgGraph [-ContextScope <ContextScope>] [-Environment <String>] [-ClientTimeout <Double>]
50-
[-EnvironmentVariable] [-NoWelcome] [<CommonParameters>]
52+
[-EnvironmentVariable] [-NoWelcome] [-ProgressAction <ActionPreference>] [<CommonParameters>]
5153
```
5254

5355
## DESCRIPTION
@@ -351,6 +353,21 @@ Accept pipeline input: False
351353
Accept wildcard characters: False
352354
```
353355
356+
### -ProgressAction
357+
{{ Fill ProgressAction Description }}
358+
359+
```yaml
360+
Type: ActionPreference
361+
Parameter Sets: (All)
362+
Aliases: proga
363+
364+
Required: False
365+
Position: Named
366+
Default value: None
367+
Accept pipeline input: False
368+
Accept wildcard characters: False
369+
```
370+
354371
### -Scopes
355372
An array of delegated permissions to consent to.
356373
@@ -366,6 +383,21 @@ Accept pipeline input: False
366383
Accept wildcard characters: False
367384
```
368385
386+
### -SendCertificateChain
387+
Include x5c header in client claims when acquiring a token to enable subject name / issuer based authentication using given certificate.
388+
389+
```yaml
390+
Type: Boolean
391+
Parameter Sets: AppCertificateParameterSet
392+
Aliases:
393+
394+
Required: False
395+
Position: Named
396+
Default value: None
397+
Accept pipeline input: False
398+
Accept wildcard characters: False
399+
```
400+
369401
### -TenantId
370402
The id of the tenant to connect to.
371403
You can also use this parameter to specify your sign-in audience.

0 commit comments

Comments
 (0)