Skip to content

Latest commit

 

History

History
65 lines (55 loc) · 3.36 KB

trustframeworkkeyset.md

File metadata and controls

65 lines (55 loc) · 3.36 KB
title description author ms.localizationpriority ms.subservice doc_type
trustFrameworkKeySet resource type
Represents a trust framework keyset/policy key.
gysingh
medium
entra-sign-in
resourcePageType

trustFrameworkKeySet resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a trust framework keyset/policy key. The Identity Experience framework stores the secrets, which can be used in the policies. The secrets can be passwords, certificates, or other files. In the portal, these entities are shown as Policy keys. The Identity Experience framework uses the JSON Web Key (JWK) standard for the keysets. This entity follows the format specified in RFC 7517 Section 5.

Inherits from entity.

Methods

Method Return type Description
List trustFrameworkKeySet collection Get a list of the trustFrameworkKeySet objects and their properties.
Create trustFrameworkKeySet Create a new trustFrameworkKeySet object.
Get trustFrameworkKeySet Read the properties and relationships of a trustFrameworkKeySet object.
Update trustFrameworkKeySet Update the properties of a trustFrameworkKeySet object.
Generate key trustFrameworkKey Generate a key in keyset.
Upload secret trustFrameworkKey Upload a string based secret.
Get active key trustFrameworkKey Get currently active key in the keyset.
Upload X.509 certificate trustFrameworkKey Upload a X.509 certificate.
Upload PKCS12 certificate trustFrameworkKey Upload a PKCS12 format certificate.

Properties

Property Type Description
id String Unique identifier of the trustframework keyset Inherited from entity.
keys trustFrameworkKey collection A collection of the keys.

Relationships

Relationship Type Description
keys_v2 trustFrameworkKey_v2 collection A collection of the keys.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.trustFrameworkKeySet",
  "id": "String (identifier)",
  "keys": [
    {
      "@odata.type": "microsoft.graph.trustFrameworkKey"
    }
  ]
}