Skip to main content

public_key_infrastructure

Creates, updates, deletes, gets or lists a public_key_infrastructure resource.

Overview

Namepublic_key_infrastructure
TypeResource
Identra_id.directory.public_key_infrastructure

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
certificateBasedAuthConfigurationsarrayThe collection of public key infrastructure instances for the certificate-based authentication feature for users.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectThe collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant.
updateupdate
deletedeleteIf-Match

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
If-MatchstringETag

SELECT examples

The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant.

SELECT
id,
certificateBasedAuthConfigurations
FROM entra_id.directory.public_key_infrastructure
;

UPDATE examples

No description available.

UPDATE entra_id.directory.public_key_infrastructure
SET
id = '{{ id }}',
certificateBasedAuthConfigurations = '{{ certificateBasedAuthConfigurations }}'
RETURNING
id,
certificateBasedAuthConfigurations;

DELETE examples

No description available.

DELETE FROM entra_id.directory.public_key_infrastructure
WHERE If-Match = '{{ If-Match }}'
;