@@ -16,38 +16,40 @@ Microsoft Graph PowerShell supports two types of authentication: delegated and a
16
16
```
17
17
Connect-MgGraph [[-Scopes] <String[]>] [[-ClientId] <String>] [-TenantId <String>]
18
18
[-ContextScope <ContextScope>] [-Environment <String>] [-UseDeviceCode] [-ClientTimeout <Double>] [-NoWelcome]
19
- [<CommonParameters>]
19
+ [-ProgressAction <ActionPreference>] [ <CommonParameters>]
20
20
```
21
21
22
22
### AppCertificateParameterSet
23
23
```
24
24
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>]
27
28
```
28
29
29
30
### IdentityParameterSet
30
31
```
31
32
Connect-MgGraph [[-ClientId] <String>] [-ContextScope <ContextScope>] [-Environment <String>]
32
- [-ClientTimeout <Double>] [-Identity] [-NoWelcome] [<CommonParameters>]
33
+ [-ClientTimeout <Double>] [-Identity] [-NoWelcome] [-ProgressAction <ActionPreference>] [ <CommonParameters>]
33
34
```
34
35
35
36
### AppSecretCredentialParameterSet
36
37
```
37
38
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>]
39
41
```
40
42
41
43
### AccessTokenParameterSet
42
44
```
43
45
Connect-MgGraph [-AccessToken] <SecureString> [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome]
44
- [<CommonParameters>]
46
+ [-ProgressAction <ActionPreference>] [ <CommonParameters>]
45
47
```
46
48
47
49
### EnvironmentVariableParameterSet
48
50
```
49
51
Connect-MgGraph [-ContextScope <ContextScope>] [-Environment <String>] [-ClientTimeout <Double>]
50
- [-EnvironmentVariable] [-NoWelcome] [<CommonParameters>]
52
+ [-EnvironmentVariable] [-NoWelcome] [-ProgressAction <ActionPreference>] [ <CommonParameters>]
51
53
```
52
54
53
55
## DESCRIPTION
@@ -351,6 +353,21 @@ Accept pipeline input: False
351
353
Accept wildcard characters : False
352
354
` ` `
353
355
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
+
354
371
### -Scopes
355
372
An array of delegated permissions to consent to.
356
373
@@ -366,6 +383,21 @@ Accept pipeline input: False
366
383
Accept wildcard characters : False
367
384
` ` `
368
385
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
+
369
401
### -TenantId
370
402
The id of the tenant to connect to.
371
403
You can also use this parameter to specify your sign-in audience.
0 commit comments