Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.86 KB

File metadata and controls

63 lines (50 loc) · 1.86 KB
title certificateAuthority resource type
description Represents a certificate authority.
ms.localizationpriority medium
author vimrang
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 07/22/2024

certificateAuthority resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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 JSON representation shows the resource type.

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