certificateAuthorityAsEntity 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 trusted certificate authority.

Inherits from entity.

Methods

Method Return type Description
List certificateAuthorityAsEntity collection Get a list of the certificateAuthorityAsEntity objects and their properties.
Create certificateAuthorityAsEntity Create a new certificateAuthorityAsEntity object.
Get certificateAuthorityAsEntity Read the properties and relationships of a certificateAuthorityAsEntity object.
Update certificateAuthorityAsEntity Update the properties of a certificateAuthorityAsEntity object.
Delete None Delete a certificateAuthorityAsEntity object.

Properties

Property Type Description
certificate Binary The trusted certificate.
id String The unique identifier for the certificate authority. Inherited from entity.
isRootAuthority Boolean Indicates if the certificate is a root authority. In a certificateBasedApplicationConfiguration object, at least one object in the trustedCertificateAuthorities collection must be a root authority.
issuer String The issuer of the trusted certificate.
issuerSubjectKeyIdentifier String The subject key identifier of the trusted certificate.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.certificateAuthorityAsEntity",
  "certificate": "String (binary)",
  "id": "String (identifier)",
  "isRootAuthority": "Boolean",
  "issuer": "String",
  "issuerSubjectKeyIdentifier": "String"
}