public_key_infrastructure
Creates, updates, deletes, gets or lists a public_key_infrastructure resource.
Overview
| Name | public_key_infrastructure |
| Type | Resource |
| Id | entra_id.directory.public_key_infrastructure |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
certificateBasedAuthConfigurations | array | The collection of public key infrastructure instances for the certificate-based authentication feature for users. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant. | ||
update | update | |||
delete | delete | If-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.
| Name | Datatype | Description |
|---|---|---|
If-Match | string | ETag |
SELECT examples
- get
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
- update
No description available.
UPDATE entra_id.directory.public_key_infrastructure
SET
id = '{{ id }}',
certificateBasedAuthConfigurations = '{{ certificateBasedAuthConfigurations }}'
RETURNING
id,
certificateBasedAuthConfigurations;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.directory.public_key_infrastructure
WHERE If-Match = '{{ If-Match }}'
;