Επεξεργασία

Κοινή χρήση μέσω


New-AzureADMSApplicationKey

Adds a new key to an application.

Syntax

Default (Default)

New-AzureADMSApplicationKey
    -ObjectId <String>
    -KeyCredential <KeyCredential>
    [-PasswordCredential <PasswordCredential>]
    -Proof <String>
    [<CommonParameters>]

Description

Adds a new key to an application.

Examples

Example 1: Add a key credential to an application

PS C:\>New-AzureADMSApplicationKey -ObjectId aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb -KeyCredential @{ key=[System.Convert]::FromBase64String("{base64cert}") } -PasswordCredential @{ displayname = "mypassword" } -Proof "{token}"

This command adds a key credential the specified application.

Parameters

-KeyCredential

The application key credential to add.

NOTES: keyId value should be null.

Parameter properties

Type:KeyCredential
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ObjectId

The unique identifier of the object specific Azure Active Directory object

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-PasswordCredential

The application password credential to add.

NOTES: keyId value should be null.

Parameter properties

Type:PasswordCredential
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Proof

A signed JWT token used as a proof of possession of the existing keys

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

string

Microsoft.Open.MSGraph.Model.KeyCredential

Microsoft.Open.MSGraph.Model.PasswordCredential

Outputs

Microsoft.Open.MSGraph.Model.KeyCredential