certificateAuthority resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a certificate authority.

Properties

Property Type Description
certificate Binary Required. The base64 encoded string representing the public certificate.
certificateRevocationListUrl String The URL of the certificate revocation list.
deltaCertificateRevocationListUrl String The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created.
isRootAuthority Boolean Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority.
issuer String The issuer of the certificate, calculated from the certificate value. Read-only.
issuerSki String The subject key identifier of the certificate, calculated from the certificate value. Read-only.

JSON representation

The following is a JSON representation of the resource.

{
  "certificate": "Binary",
  "certificateRevocationListUrl": "String",
  "deltaCertificateRevocationListUrl": "String",
  "isRootAuthority": true,
  "issuer": "String",
  "issuerSki": "String"
}