Skip to content

Commit 505c42f

Browse files
committed
Alias ClientId and CertName to AppId and CertSubject respectively.
1 parent d24f61a commit 505c42f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssem
3030
Position = 1,
3131
Mandatory = true,
3232
HelpMessage = "The client id of your application.")]
33+
[Alias("AppId")]
3334
public string ClientId { get; set; }
3435

3536
[Parameter(ParameterSetName = Constants.AppParameterSet,
3637
Position = 2,
3738
HelpMessage = "The name of your certificate. The Certificate will be retrieved from the current user's certificate store.")]
39+
[Alias("CertificateSubject")]
3840
public string CertificateName { get; set; }
3941

4042
[Parameter(ParameterSetName = Constants.AppParameterSet,

0 commit comments

Comments
 (0)