userPFXCertificate resource type
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Entity that encapsulates all information required for a user's PFX certificates.
Methods
Method | Return Type | Description |
---|---|---|
List userPFXCertificates | userPFXCertificate collection | List properties and relationships of the userPFXCertificate objects. |
Get userPFXCertificate | userPFXCertificate | Read properties and relationships of the userPFXCertificate object. |
Create userPFXCertificate | userPFXCertificate | Create a new userPFXCertificate object. |
Delete userPFXCertificate | None | Deletes a userPFXCertificate. |
Update userPFXCertificate | userPFXCertificate | Update the properties of a userPFXCertificate object. |
Properties
Property | Type | Description |
---|---|---|
id | String | Unique identifier for the PFX certificate. |
thumbprint | String | SHA-1 thumbprint of the PFX certificate. |
intendedPurpose | userPfxIntendedPurpose | Certificate's intended purpose from the point-of-view of deployment. Possible values are: unassigned , smimeEncryption , smimeSigning , vpn , wifi . |
userPrincipalName | String | User Principal Name of the PFX certificate. |
startDateTime | DateTimeOffset | Certificate's validity start date/time. |
expirationDateTime | DateTimeOffset | Certificate's validity expiration date/time. |
providerName | String | Crypto provider used to encrypt this blob. |
keyName | String | Name of the key (within the provider) used to encrypt the blob. |
paddingScheme | userPfxPaddingScheme | Padding scheme used by the provider during encryption/decryption. Possible values are: none , pkcs1 , oaepSha1 , oaepSha256 , oaepSha384 , oaepSha512 . |
encryptedPfxBlob | Binary | Encrypted PFX blob. |
encryptedPfxPassword | String | Encrypted PFX password. |
createdDateTime | DateTimeOffset | Date/time when this PFX certificate was imported. |
lastModifiedDateTime | DateTimeOffset | Date/time when this PFX certificate was last modified. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.userPFXCertificate",
"id": "String (identifier)",
"thumbprint": "String",
"intendedPurpose": "String",
"userPrincipalName": "String",
"startDateTime": "String (timestamp)",
"expirationDateTime": "String (timestamp)",
"providerName": "String",
"keyName": "String",
"paddingScheme": "String",
"encryptedPfxBlob": "binary",
"encryptedPfxPassword": "String",
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)"
}